about summary refs log tree commit diff
path: root/lib/mk_colmena.nix
blob: 641dd34b2513c603b3da1d79f7fbe0432b19280d (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}/nixos";
  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
  ];
}