blob: b9c50a66bab17ec5d601d2822649c0ffc23223fa (
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
30
31
32
33
34
35
|
{ self, ... } @ args:
{ name
, system ? "x86_64-linux"
, deployment ? null
, host ? null
, port ? 22
, tags ? null
, inputs ? null
, ...
}:
let
configFolder = "${self}/colmena";
entryPoint = "${configFolder}/${name}/configuration.nix";
hardware = "${configFolder}/${name}/hardware-configuration.nix";
in
{
deployment = deployment;
# system = system;
imports = [
{
_module.args = args;
networking.hostName = name;
nix.flakes.enable = true;
system.configurationRevision = self.rev or "dirty";
documentation.man = { enable = true; generateCaches = true; };
}
entryPoint
hardware
../nixos/modules/flake.nix
../nixos/modules/nix.nix
inputs.impermanence.nixosModules.impermanence
];
}
|