fix: add workaround for steam cursor

This commit is contained in:
2026-02-21 13:17:30 +01:00
parent 3f7ad82e25
commit 3be38d0f89
2 changed files with 8 additions and 6 deletions

View File

@@ -14,12 +14,8 @@
./vesktop.nix
./zoxide.nix
]
++ (
if currentSystemDe == "hyprland" then
./hyprland
else
[ ] ++ (if currentSystemDe == "gnome" then ./gnome.nix else [ ])
);
++ (if currentSystemDe == "hyprland" then [ ./hyprland ] else [ ])
++ (if currentSystemDe == "gnome" then [ ./gnome.nix ] else [ ]);
home = {
username = "${currentSystemUser}";

View File

@@ -23,4 +23,10 @@
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;
};
}