From 3f7ad82e2554c868b6a857a4ca1c9f510faae02a Mon Sep 17 00:00:00 2001 From: Superredstone Date: Sat, 21 Feb 2026 12:28:12 +0100 Subject: [PATCH] feat: add gnome theming --- home/default.nix | 12 ++---------- home/gnome.nix | 12 ++++++++++++ 2 files changed, 14 insertions(+), 10 deletions(-) diff --git a/home/default.nix b/home/default.nix index a57564c..084e74a 100644 --- a/home/default.nix +++ b/home/default.nix @@ -8,7 +8,6 @@ imports = [ ./fish.nix ./git.nix - ./gnome.nix ./kitty.nix ./mangohud.nix ./tmux.nix @@ -17,11 +16,9 @@ ] ++ ( if currentSystemDe == "hyprland" then - [ - ./hyprland - ] + ./hyprland else - [ ] + [ ] ++ (if currentSystemDe == "gnome" then ./gnome.nix else [ ]) ); home = { @@ -34,11 +31,6 @@ packages = [ pkgs.dconf ]; - pointerCursor = { - enable = false; - package = pkgs.bibata-cursors; - name = "Bibata-Modern-Classic"; - }; sessionPath = [ "$HOME/.local/bin" ]; diff --git a/home/gnome.nix b/home/gnome.nix index db3c2f9..46940d1 100644 --- a/home/gnome.nix +++ b/home/gnome.nix @@ -11,4 +11,16 @@ }; "org/gnome/desktop/interface".color-scheme = "prefer-dark"; }; + + gtk = { + enable = true; + iconTheme = { + name = "Papirus"; + package = pkgs.papirus-icon-theme; + }; + cursorTheme = { + name = "Bibata-Modern-Classic"; + package = pkgs.bibata-cursors; + }; + }; }