From 5027580f06e404b31e432e7f3af3ac815695ffa3 Mon Sep 17 00:00:00 2001 From: Anthony Rodriguez Date: Fri, 6 Dec 2024 13:06:35 +0100 Subject: [PATCH] modules/theme: update default gtk themes --- modules/theme/gtk.nix | 19 +++++-------------- 1 file changed, 5 insertions(+), 14 deletions(-) diff --git a/modules/theme/gtk.nix b/modules/theme/gtk.nix index 1877b67..4ef74a1 100644 --- a/modules/theme/gtk.nix +++ b/modules/theme/gtk.nix @@ -5,10 +5,8 @@ pkgs, ... }: let - inherit (builtins) pathExists; - inherit (lib) mkIf mkOption; + inherit (lib) mkIf mkOption pathExists; inherit (lib.types) bool package str; - cfg = config.theme.gtk; in { options.theme.gtk = { @@ -21,20 +19,16 @@ in { name = mkOption { type = str; description = "Name for the GTK theme"; - default = "catppuccin-macchiato-lavender-standard"; + default = "rose-pine"; }; package = mkOption { type = package; description = "Package providing the GTK theme"; - default = pkgs.catppuccin-gtk.override { - # https://github.com/NixOS/nixpkgs/blob/nixos-23.05/pkgs/data/themes/catppuccin-gtk/default.nix - variant = "macchiato"; - accents = ["lavender"]; - size = "standard"; - }; + default = pkgs.rose-pine-gtk-theme; }; }; + iconTheme = { name = mkOption { type = str; @@ -45,10 +39,7 @@ in { package = mkOption { type = package; description = "The GTK icon theme to be used"; - default = pkgs.catppuccin-papirus-folders.override { - accent = "lavender"; - flavor = "macchiato"; - }; + default = pkgs.papirus-icon-theme; }; }; };