From c18b4315ee6fab613bf7d57e04a8a2e44e86ddd0 Mon Sep 17 00:00:00 2001 From: Youwen Wu Date: Thu, 26 Dec 2024 01:11:43 -0800 Subject: [PATCH] feat: enable gtk theming again with icons --- hm/modules/linux/theming/default.nix | 16 ++++++---------- hm/modules/linux/theming/stylix.nix | 7 ------- 2 files changed, 6 insertions(+), 17 deletions(-) diff --git a/hm/modules/linux/theming/default.nix b/hm/modules/linux/theming/default.nix index 7d3539e..744cd7e 100644 --- a/hm/modules/linux/theming/default.nix +++ b/hm/modules/linux/theming/default.nix @@ -1,14 +1,10 @@ { pkgs, ... }: { imports = [ ./stylix.nix ]; - # gtk = { - # enable = true; - # cursorTheme = { - # name = "Bibata-Modern-Ice"; - # size = 26; - # }; - # iconTheme = { - # name = "Papirus-Dark"; - # }; - # }; + gtk = { + enable = true; + iconTheme = { + name = "Papirus-Dark"; + }; + }; } diff --git a/hm/modules/linux/theming/stylix.nix b/hm/modules/linux/theming/stylix.nix index 3a990b9..0fb7fa3 100644 --- a/hm/modules/linux/theming/stylix.nix +++ b/hm/modules/linux/theming/stylix.nix @@ -11,12 +11,5 @@ hyprlock.enable = false; hyprland.enable = false; }; - - gtk = { - enable = true; - iconTheme = { - name = "Papirus-Dark"; - }; - }; }; }