configuration.nix/nixos/default.nix

16 lines
342 B
Nix
Raw Normal View History

2024-05-06 23:28:49 +02:00
{ system, nixpkgs, modules, hosts, catppuccin, ... }: {
2023-11-18 08:34:47 +01:00
laptop = nixpkgs.lib.nixosSystem {
inherit system;
2023-12-09 08:03:28 +01:00
modules = with modules.nixos; [
2023-11-18 08:34:47 +01:00
../hardware-configuration.nix
./laptop
# dnscrypt
2023-11-21 15:50:22 +01:00
# gaming
2024-01-21 11:08:22 +01:00
wireguard
2023-11-21 15:50:22 +01:00
# nvidia
2023-11-18 08:34:47 +01:00
hosts.nixosModule
2024-05-06 23:28:49 +02:00
catppuccin.nixosModules.catppuccin
2023-11-18 08:34:47 +01:00
];
};
}