-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathhosts.nix
96 lines (86 loc) · 1.84 KB
/
hosts.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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
nixos = {
pcbox = {
username = "maxmur";
platform = "x86_64-linux";
stateVersion = "25.05";
isWorkstation = true;
wm = "sway";
theme = "nord";
};
nbox = {
username = "maxmur";
platform = "x86_64-linux";
stateVersion = "25.05";
isWorkstation = true;
wm = "sway";
theme = "nord";
};
rasp = {
username = "maxmur";
platform = "aarch64-linux";
stateVersion = "25.05";
isWorkstation = false;
theme = "nord";
};
hlbox = {
username = "maxmur";
platform = "x86_64-linux";
stateVersion = "24.11";
isWorkstation = false;
theme = "nord";
};
p8box = {
username = "maxmur";
platform = "x86_64-linux";
stateVersion = "25.05";
isWorkstation = true;
wm = "sway";
theme = "nord";
};
dnsvm = {
username = "maxmur";
platform = "x86_64-linux";
stateVersion = "24.11";
isWorkstation = false;
theme = "nord";
};
dbvm = {
username = "maxmur";
platform = "x86_64-linux";
stateVersion = "24.11";
isWorkstation = false;
theme = "nord";
};
gitvm = {
username = "maxmur";
platform = "x86_64-linux";
stateVersion = "24.11";
isWorkstation = false;
theme = "nord";
};
vaultvm = {
username = "maxmur";
platform = "x86_64-linux";
stateVersion = "24.11";
isWorkstation = false;
theme = "nord";
};
vpntwvm = {
username = "maxmur";
platform = "x86_64-linux";
stateVersion = "24.11";
isWorkstation = false;
theme = "nord";
};
};
darwin = {
macbox = {
username = "maxmur";
platform = "aarch64-darwin";
stateVersion = 5;
isWorkstation = true;
theme = "nord";
};
};
}