nixos-config/modules/workspace/cursor.nix

22 lines
496 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 = {
xsession.pointerCursor = {
package = pkgs.breeze-qt5;
name = "Breeze";
};
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
2021-06-16 13:04:02 +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
};
}