diff --git a/home/default.nix b/home/default.nix index 084e74a..bfcc22a 100644 --- a/home/default.nix +++ b/home/default.nix @@ -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}"; diff --git a/home/gnome.nix b/home/gnome.nix index 46940d1..3ba8266 100644 --- a/home/gnome.nix +++ b/home/gnome.nix @@ -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; + }; }