DEVELOPMENT ENVIRONMENT

~liljamo/nix-arta

ref: 065f55257a7d1df9c0d2cc9257dbe813b65c0e9f nix-arta/systems/hosts/default.nix -rw-r--r-- 824 bytes
065f5525Jonni Liljamo feat: LXC docs, base LXC, use NixOS LXC module a month 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
52
53
54
55
56
57
{
  desktop,
  laptop,
  lxc,
  vm,
  ...
}: {
  alice = {
    system = "x86_64-linux";
    profile = desktop;
    modules = [];
  };
  arwen = {
    system = "x86_64-linux";
    profile = laptop;
    modules = [];
  };

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

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