From 934230098ea1aff3932ec0255231969359b0ed6c Mon Sep 17 00:00:00 2001 From: ItsDrike Date: Tue, 25 Jun 2024 00:19:55 +0200 Subject: [PATCH] Move to tokyo-night gtk theme (catppuccin is deprecated) --- options/home/theme.nix | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/options/home/theme.nix b/options/home/theme.nix index 6677d9b..e53d8de 100644 --- a/options/home/theme.nix +++ b/options/home/theme.nix @@ -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; }; };