16 lines
388 B
Nix
Raw Normal View History

2021-02-07 02:38:11 +03:00
{ pkgs, lib, ... }: {
environment.sessionVariables = {
XCURSOR_PATH = lib.mkForce "/home/alukard/.icons";
};
home-manager.users.alukard = {
xsession.pointerCursor = {
package = pkgs.bibata-cursors;
name = "Bibata-Modern-Classic";
};
home.file.".icons/default" = {
source = "${pkgs.bibata-cursors}/share/icons/Bibata-Modern-Classic";
};
};
}