modules/theme: use purple accent for catppuccin gtk

This commit is contained in:
Anthony Rodriguez 2024-12-13 23:23:45 +01:00
parent 02ab15aad4
commit 1303ad9df0
Signed by: nezia
GPG key ID: EE3BE97C040A86CE

View file

@ -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"];
};
};
};