configuration.nix/nixos/default.nix

12 lines
224 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
modules.dnscrypt
hosts.nixosModule
];
};
}