configuration.nix/nixos/default.nix

14 lines
273 B
Nix
Raw Normal View History

2023-11-18 08:34:47 +01:00
{ system, nixpkgs, modules, hosts }: {
laptop = nixpkgs.lib.nixosSystem {
inherit system;
modules = [
../hardware-configuration.nix
./laptop
2023-11-18 17:32:16 +01:00
modules.dnscrypt
# modules.wireguard
# modules.gaming
2023-11-18 08:34:47 +01:00
hosts.nixosModule
];
};
}