configuration.nix/nixos/default.nix
2023-11-21 16:50:22 +02:00

15 lines
283 B
Nix

{ system, nixpkgs, modules, hosts }: {
laptop = nixpkgs.lib.nixosSystem {
inherit system;
modules = with modules.nixos;[
../hardware-configuration.nix
./laptop
dnscrypt
# gaming
# wireguard
# nvidia
hosts.nixosModule
];
};
}