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 = {
name = mkOption {
type = types.str;
default = "Catppuccin-Mocha-Standard-Blue-dark";
default = "Tokyonight-Dark-BL";
description = "The name for the GTK theme package";
};
package = mkOption {
type = types.package;
description = "The theme package to be used for GTK programs";
default = pkgs.catppuccin-gtk.override {
size = "standard";
accents = ["blue"];
variant = "mocha";
tweaks = ["normal"];
};
default = pkgs.tokyo-night-gtk;
};
};