From 1303ad9df08356cd5ab306703b7b2002e901a1f7 Mon Sep 17 00:00:00 2001 From: Anthony Rodriguez Date: Fri, 13 Dec 2024 23:23:45 +0100 Subject: [PATCH] modules/theme: use purple accent for catppuccin gtk --- modules/theme/gtk.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/modules/theme/gtk.nix b/modules/theme/gtk.nix index 03015d6..54a9acf 100644 --- a/modules/theme/gtk.nix +++ b/modules/theme/gtk.nix @@ -18,14 +18,14 @@ in { name = mkOption { type = str; description = "Name for the GTK theme"; - default = "Catppuccin-GTK-Dark"; + default = "Catppuccin-GTK-Purple-Dark"; }; package = mkOption { type = package; description = "Package providing the GTK theme"; - default = pkgs.magnetic-catppuccin-gtk.overrideAttrs { - accent = "purple"; + default = pkgs.magnetic-catppuccin-gtk.override { + accent = ["purple"]; }; }; };