blob: 175352220f5a2653492820edb0b2aed95c201e72 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
{ self, ... } @ args:
{ name, nixpkgs, system ? "x86_64-linux", overlays ? null, extraModules ? null }:
nixpkgs.lib.nixosSystem (
let
configFolder = "${self}/nixos";
entryPoint = "${configFolder}/${name}/configuration.nix";
hardware = "${configFolder}/${name}/hardware-configuration.nix";
in
{
system = system;
specialArgs = args;
modules = [
{
networking.hostName = name;
nix.flakes.enable = true;
system.configurationRevision = self.rev or "dirty";
documentation.man = { enable = true; generateCaches = true; };
}
entryPoint
hardware
../nixos/modules/flakes.nix
../nixos/modules/nix.nix
] ++ nixpkgs.lib.optional (overlays != null) { nixpkgs.overlays = overlays; }
++ nixpkgs.lib.optionals (extraModules != null) extraModules;
}
)
|