Move to tokyo-night gtk theme (catppuccin is deprecated)

This commit is contained in:
ItsDrike 2024-06-25 00:19:55 +02:00
parent 80c1d84061
commit 934230098e
Signed by: ItsDrike
GPG key ID: FA2745890B7048C0

View file

@ -10,19 +10,14 @@ in
theme = { theme = {
name = mkOption { name = mkOption {
type = types.str; type = types.str;
default = "Catppuccin-Mocha-Standard-Blue-dark"; default = "Tokyonight-Dark-BL";
description = "The name for the GTK theme package"; description = "The name for the GTK theme package";
}; };
package = mkOption { package = mkOption {
type = types.package; type = types.package;
description = "The theme package to be used for GTK programs"; description = "The theme package to be used for GTK programs";
default = pkgs.catppuccin-gtk.override { default = pkgs.tokyo-night-gtk;
size = "standard";
accents = ["blue"];
variant = "mocha";
tweaks = ["normal"];
};
}; };
}; };