From e3e6bb967c2834c19fc4f63d081d34c2b21d4c0f Mon Sep 17 00:00:00 2001 From: nydragon Date: Thu, 6 Mar 2025 19:13:57 +0100 Subject: [PATCH] chore: clean themes file --- modules/themes/default.nix | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) diff --git a/modules/themes/default.nix b/modules/themes/default.nix index 402a6df..84b4264 100644 --- a/modules/themes/default.nix +++ b/modules/themes/default.nix @@ -8,16 +8,14 @@ config = lib.mkIf config.modules.system.roles.desktop.enable { qt = { enable = true; - platformTheme = "gtk2"; - #platformTheme = "qt5ct"; - #style = "kvantum"; + platformTheme = "gtk2"; # Follow gtk theme }; environment.systemPackages = with pkgs; [ - #vimix-icon-theme - #pop-icon-theme - catppuccin-papirus-folders - #catppuccin-kvantum + (catppuccin-papirus-folders.override { + accent = "lavender"; + flavor = "frappe"; + }) ]; }; }