nixos-config/profiles/workspace/cursor.nix

23 lines
513 B
Nix
Raw Normal View History

2021-01-21 22:13:53 +04:00
{ pkgs, lib, ... }: {
environment.sessionVariables = {
XCURSOR_PATH = lib.mkForce "/home/balsoft/.icons";
};
home-manager.users.balsoft = {
2022-05-25 11:16:37 +04:00
home.pointerCursor = {
2021-01-21 22:13:53 +04:00
package = pkgs.breeze-qt5;
name = "Breeze";
2022-05-18 17:15:12 +04:00
size = 16;
2021-01-21 22:13:53 +04:00
};
2021-06-16 13:04:02 +04:00
home.file."/home/balsoft/.icons/default".source =
"${lib.getBin pkgs.breeze-qt5}/share/icons/breeze_cursors";
2021-05-10 04:04:18 +04:00
2023-09-11 20:05:13 +04:00
# home.file."/home/balsoft/.icons/Breeze".source =
# "${lib.getBin pkgs.breeze-qt5}/share/icons/breeze_cursors";
2021-01-21 22:13:53 +04:00
};
}