DEVELOPMENT ENVIRONMENT

~liljamo/nix-arta

ref: d361cc9314a3bf0aa4cacfa0a921cf24fbd2cd84 nix-arta/lxc/systems.nix -rw-r--r-- 1.1 KiB
d361cc93Jonni Liljamo chore(ws): update nvim-flake 7 days ago
                                                                                
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
{
  lib,
  inputs,
  ...
}: {
  flake = let
    mkHost = name: cfg:
      inputs.nixpkgs.lib.nixosSystem {
        system = cfg.system;
        specialArgs = cfg.profile.specialArgs;
        modules =
          cfg.profile.modules
          ++ cfg.modules
          ++ [
            ./hosts/${name}
            {
              networking.hostName = name;
            }
          ];
      };

    mkLXCTemplatePackage = name: cfg:
      inputs.nixos-generators.nixosGenerate {
        system = cfg.system;
        specialArgs = cfg.profile.specialArgs;
        modules =
          cfg.profile.modules
          ++ cfg.modules
          ++ [
            {
              networking.hostName = name;
            }
          ];
        format = "proxmox-lxc";
      };

    profiles = import ./profiles lib inputs;
    hosts = import ./hosts profiles;

    templatePackages = {
      template = {
        system = "x86_64-linux";
        profile = profiles.template;
        modules = [];
      };
    };
  in {
    nixosConfigurations = lib.mapAttrs mkHost hosts;
    packages.x86_64-linux = inputs.nixpkgs.lib.mapAttrs mkLXCTemplatePackage templatePackages;
  };
}