forked from shazow/nixfiles
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathnixops.nix
79 lines (65 loc) · 1.78 KB
/
nixops.nix
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
network.description = "hivemind dev network";
network.storage.legacy = {
databasefile = "~/.nixops/deployments.nixops";
};
lurker = {
imports = [ ./hive-lurker-devserver.nix ];
deployment.targetHost = "lurker";
nix.gc.automatic = false;
};
drone = {
imports = [ ./hive-drone-devserver.nix ];
deployment.targetHost = "drone";
nix.gc.automatic = false;
};
viper = {
imports = [ ./hive-viper-devserver.nix ];
deployment.targetHost = "192.168.199.118";
nix.gc.automatic = false;
};
ultralisk = {
imports = [ ./hive-ultralisk-postgres.nix ];
deployment.targetHost = "192.168.199.202";
nix.gc.automatic = true;
};
hydralisk = {
imports = [ ./hive-hydralisk-desktop.nix ];
deployment.targetHost = "hydralisk";
nix.gc.automatic = false;
};
overlord = {
imports = [ ./hive-overlord-dnsmasq.nix ];
deployment.targetHost = "192.168.199.9";
nix.gc.automatic = true;
};
nydusworm = {
imports = [ ./hive-nydusworm-plex.nix ];
deployment.targetHost = "192.168.199.207";
nix.gc.automatic = true;
};
probe = {
imports = [ ./hive-probe-outer.nix ];
deployment.targetHost = "192.168.199.58";
nix.gc.automatic = true;
};
#zergling = {
# imports = [ ./hive-zergling-x280.nix ];
# deployment.targetHost = "zergling";
#};
#infestedTerran = {
# imports = [ ./hive-infested-terran-opstest.nix ];
# deployment.targetHost = "infested-terran";
# nix.gc.automatic = true;
#};
spawningPool = {
imports = [ ./hive-spawning-pool-printserver.nix ];
deployment.targetHost = "192.168.199.135";
nix.gc.automatic = true;
};
swarmHost = {
imports = [ ./hive-swarm-host-nas.nix ];
deployment.targetHost = "192.168.199.200";
nix.gc.automatic = true;
};
}