diff --git a/flake.nix b/flake.nix index a8c148b..1161e63 100644 --- a/flake.nix +++ b/flake.nix @@ -36,7 +36,7 @@ inherit pkgs modules home-manager nid catppuccin; }; nixos = import ./nixos { - inherit system nixpkgs modules hosts; + inherit system nixpkgs modules hosts catppuccin; }; in { diff --git a/nixos/default.nix b/nixos/default.nix index 0e02961..e4fcefe 100644 --- a/nixos/default.nix +++ b/nixos/default.nix @@ -1,4 +1,4 @@ -{ system, nixpkgs, modules, hosts }: { +{ system, nixpkgs, modules, hosts, catppuccin, ... }: { laptop = nixpkgs.lib.nixosSystem { inherit system; modules = with modules.nixos; [ @@ -9,6 +9,7 @@ wireguard # nvidia hosts.nixosModule + catppuccin.nixosModules.catppuccin ]; }; } diff --git a/nixos/laptop/default.nix b/nixos/laptop/default.nix index ec9caf8..ff74978 100644 --- a/nixos/laptop/default.nix +++ b/nixos/laptop/default.nix @@ -150,4 +150,5 @@ pulse.enable = true; }; }; + catppuccin.enable = true; }