zaphyra's git: nixfiles

zaphyra's nixfiles

commit fe92ecc8eab827d96e390d72b52e43d41b45d240
parent 7dab855fdec4d59bc70e8d71e5a5b4ea9f24626e
Author: Katja Ramona Sophie Kwast (zaphyra) <git@zaphyra.eu>
Date: Wed, 30 Jul 2025 18:34:45 +0200

config/home/zaphyra/configure/{gnome,niri}: use `Adwaita` cursor
3 files changed, 13 insertions(+), 5 deletions(-)
diff --git a/config/home/zaphyra/configure/gnome.nix b/config/home/zaphyra/configure/gnome.nix
@@ -48,8 +48,15 @@ in
   gtk = {
     enable = true;
 
-    iconTheme.package = pkgs.adwaita-colors-icon-theme;
-    iconTheme.name = "Adwaita-green";
+    iconTheme = {
+      name = "Adwaita-green";
+      package = pkgs.adwaita-colors-icon-theme;
+    };
+
+    cursorTheme = {
+      name = "Adwaita";
+      package = pkgs.adwaita-icon-theme;
+    };
 
     gtk3.extraConfig = {
       gtk-application-prefer-dark-theme = 1;
diff --git a/config/home/zaphyra/configure/niri.nix b/config/home/zaphyra/configure/niri.nix
@@ -54,8 +54,8 @@ in
     };
 
     cursorTheme = {
-      name = "Vanilla-DMZ";
-      package = pkgs.vanilla-dmz;
+      name = "Adwaita";
+      package = pkgs.adwaita-icon-theme;
     };
 
     gtk3.extraConfig = {
diff --git a/config/home/zaphyra/services/niri.nix b/config/home/zaphyra/services/niri.nix
@@ -30,6 +30,8 @@
 
       outputs."eDP-1".scale = 1;
 
+      cursor.theme = config.gtk.cursorTheme.name;
+
       gestures.hot-corners.enable = false;
 
       layout = {

@@ -43,7 +45,6 @@
         tab-indicator.gaps-between-tabs = 10;
       };
 
-      cursor.theme = "DMZ-Black";
 
       environment = {
         QT_QPA_PLATFORM = "wayland";