enable catppuccin globally

This commit is contained in:
Ivan Dimitrov 2024-05-07 00:28:49 +03:00
parent 4e605c8d48
commit 2e9a52f1a1
3 changed files with 4 additions and 2 deletions

View File

@ -36,7 +36,7 @@
inherit pkgs modules home-manager nid catppuccin; inherit pkgs modules home-manager nid catppuccin;
}; };
nixos = import ./nixos { nixos = import ./nixos {
inherit system nixpkgs modules hosts; inherit system nixpkgs modules hosts catppuccin;
}; };
in in
{ {

View File

@ -1,4 +1,4 @@
{ system, nixpkgs, modules, hosts }: { { system, nixpkgs, modules, hosts, catppuccin, ... }: {
laptop = nixpkgs.lib.nixosSystem { laptop = nixpkgs.lib.nixosSystem {
inherit system; inherit system;
modules = with modules.nixos; [ modules = with modules.nixos; [
@ -9,6 +9,7 @@
wireguard wireguard
# nvidia # nvidia
hosts.nixosModule hosts.nixosModule
catppuccin.nixosModules.catppuccin
]; ];
}; };
} }

View File

@ -150,4 +150,5 @@
pulse.enable = true; pulse.enable = true;
}; };
}; };
catppuccin.enable = true;
} }