mirror of
https://github.com/Superredstone/nixos.git
synced 2026-03-07 20:28:08 +01:00
fix: add workaround for steam cursor
This commit is contained in:
@@ -14,12 +14,8 @@
|
|||||||
./vesktop.nix
|
./vesktop.nix
|
||||||
./zoxide.nix
|
./zoxide.nix
|
||||||
]
|
]
|
||||||
++ (
|
++ (if currentSystemDe == "hyprland" then [ ./hyprland ] else [ ])
|
||||||
if currentSystemDe == "hyprland" then
|
++ (if currentSystemDe == "gnome" then [ ./gnome.nix ] else [ ]);
|
||||||
./hyprland
|
|
||||||
else
|
|
||||||
[ ] ++ (if currentSystemDe == "gnome" then ./gnome.nix else [ ])
|
|
||||||
);
|
|
||||||
|
|
||||||
home = {
|
home = {
|
||||||
username = "${currentSystemUser}";
|
username = "${currentSystemUser}";
|
||||||
|
|||||||
@@ -23,4 +23,10 @@
|
|||||||
package = pkgs.bibata-cursors;
|
package = pkgs.bibata-cursors;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
# Fix for steam cursor
|
||||||
|
home.file.".local/share/icons/default" = {
|
||||||
|
source = "${pkgs.bibata-cursors}/share/icons/Bibata-Modern-Classic/";
|
||||||
|
recursive = true;
|
||||||
|
};
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user