From ef474ea4b29708ccbb9c2834bd82d1d23b843ef7 Mon Sep 17 00:00:00 2001 From: Anthony Rodriguez Date: Thu, 5 Dec 2024 15:57:34 +0100 Subject: [PATCH] hosts/solaire: update theme to rose-pine --- hosts/solaire/modules/theme.nix | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/hosts/solaire/modules/theme.nix b/hosts/solaire/modules/theme.nix index 14d5a56..c13b513 100644 --- a/hosts/solaire/modules/theme.nix +++ b/hosts/solaire/modules/theme.nix @@ -1,8 +1,11 @@ -{ +{pkgs, ...}: { theme = { - wallpaper = ../../../wallpapers/lucy-edgerunners-wallpaper.jpg; - schemeName = "catppuccin-macchiato"; enable = true; - gtk.enable = false; + wallpaper = ../../../wallpapers/lucy-edgerunners-wallpaper.jpg; + schemeName = "rose-pine"; + gtk.theme = { + name = "rose-pine"; + package = pkgs.rose-pine-gtk-theme; + }; }; }