diff --git a/flake.nix b/flake.nix index bb09e49..68da6a8 100644 --- a/flake.nix +++ b/flake.nix @@ -46,6 +46,9 @@ size = 12; }; in { + colors = colors; + font = font; + # TODO: nix-color integration? # Your custom packages # Acessible through 'nix build', 'nix shell', etc diff --git a/modules/home-manager/desktop.nix b/modules/home-manager/desktop.nix index be70a7a..22ce680 100644 --- a/modules/home-manager/desktop.nix +++ b/modules/home-manager/desktop.nix @@ -1,22 +1,5 @@ -{ - outputs, - pkgs, - ... -}: { +{outputs, ...}: { imports = with outputs.homeManagerModules; [ kitty ]; - - gtk = { - enable = true; - theme = { - name = "Catppuccin-Mocha-Compact-Sapphire-dark"; - package = pkgs.catppuccin-gtk.override { - accents = ["sapphire"]; - size = "compact"; - tweaks = ["rimless" "black"]; - variant = "mocha"; - }; - }; - }; } diff --git a/modules/home-manager/linux-desktop.nix b/modules/home-manager/linux-desktop.nix index d35a381..d6530de 100644 --- a/modules/home-manager/linux-desktop.nix +++ b/modules/home-manager/linux-desktop.nix @@ -1,4 +1,5 @@ { + pkgs, outputs, # font, ... @@ -7,4 +8,17 @@ desktop firefox ]; + + gtk = { + enable = true; + theme = { + name = "Catppuccin-Mocha-Compact-Sapphire-dark"; + package = pkgs.catppuccin-gtk.override { + accents = ["sapphire"]; + size = "compact"; + tweaks = ["rimless" "black"]; + variant = "mocha"; + }; + }; + }; }