DEVELOPMENT ENVIRONMENT

~liljamo/nix-arta

ref: 581ef98c3d8c0d9c186775c7766f1000757cbd6a nix-arta/systems/hosts/default.nix -rw-r--r-- 660 bytes
581ef98cJonni Liljamo feat: add alderaan 2 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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
{
  desktop,
  laptop,
  lxc,
  vm,
  ...
}: {
  alice = {
    system = "x86_64-linux";
    profile = desktop;
    modules = [];
  };
  arwen = {
    system = "x86_64-linux";
    profile = laptop;
    modules = [];
  };

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

  # VMs
  sqbuilds = {
    system = "x86_64-linux";
    profile = vm;
    modules = [];
  };
}