From f71dd9c1975d80be2fec3db91752fee32d9f038f Mon Sep 17 00:00:00 2001 From: Anthony Rodriguez Date: Tue, 4 Feb 2025 21:18:50 +0100 Subject: [PATCH] options/style: switch to adw-gtk3 gtk theme --- modules/options/style.nix | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/modules/options/style.nix b/modules/options/style.nix index ee20d63..129b84c 100644 --- a/modules/options/style.nix +++ b/modules/options/style.nix @@ -80,15 +80,13 @@ in { name = mkOption { type = str; description = "Name for the GTK theme"; - default = "Catppuccin-GTK-Purple-Dark"; + default = "adw-gtk3"; }; package = mkOption { type = package; description = "Package providing the GTK theme"; - default = pkgs.magnetic-catppuccin-gtk.override { - accent = ["purple"]; - }; + default = pkgs.adw-gtk3; }; };