DEVELOPMENT ENVIRONMENT

~liljamo/nix-arta

ref: 850ff6aa54c9c15f1d9efb24bfbd5c1324fb237e nix-arta/systems/hosts/default.nix -rw-r--r-- 307 bytes
850ff6aaJonni Liljamo fix(roles/prometheus): mkIf enable 3 months 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
{
  desktop,
  laptop,
  lxc,
  ...
}: {
  alice = {
    system = "x86_64-linux";
    profile = desktop;
    modules = [];
  };
  arwen = {
    system = "x86_64-linux";
    profile = laptop;
    modules = [];
  };

  # LXCs
  dns = {
    system = "x86_64-linux";
    profile = lxc;
    modules = [];
  };
}