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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
|
{
self,
agenix,
nixpkgs,
nixpkgs-unstable,
deploy-rs,
home-manager,
darwin,
flake-utils,
pwndbg,
...
}@inputs:
rec {
generateSystem =
name:
{
hostname ? name,
username ? "emile",
system ? "x86_64-linux",
deployUser ? "root",
homeManagerEnable ? false,
group ? null,
modules ? [ ],
unstable ? false,
...
}:
let
localNixpkgs =
if unstable == true then
nixpkgs-unstable
else
# inputs.nixpkgs-${name}, if that doesn't exist, just use nixpkgs
nixpkgs.lib.attrByPath [ "nixpkgs-${name}" ] # path
nixpkgs # default
inputs; # base
# determine if our system type that is used further down
systemType =
if system == "x86_64-linux" then
localNixpkgs.lib.nixosSystem
else if system == "aarch64-darwin" then
darwin.lib.darwinSystem
else
null;
in
systemType {
# this may fail if we aren't using x86_64-linux or aarch64-darwin
inherit system;
# allow the usage of the inputs within the systemd
# for example:
# { pkgs, ... } @ args: { imports = ["${args.inputs.nixpkgs-unstable}/path/to/module.nix"] }
specialArgs = { inherit inputs self; };
# ; nix repl
# nix-repl> :lf .
# nix-repl> nixosConfigurations.corrino._module.args.modules
modules =
modules
++ [
(
if system == "x86_64-linux" then
self.nixosModules.x86_64-linux
else if system == "aarch64-darwin" then
{ }
else
null
)
# a module so that we can access the flake output from inside the
# flake (yes, I need this for fetching the system type while building the hosts for deploy-rs)
{
config._module.args = {
flake = self;
};
}
# overlays
(
{ ... }:
{
nixpkgs.overlays = [
(
if system == "x86_64-linux" then
self.overlays.x86_64-linux
else if system == "aarch64-darwin" then
self.overlays.aarch64-darwin
# // self.overlays.unstable-darwin
# {}
else
null
)
# no clue why, but when rebuilding corrino and this not being commented,
# something in the hardware.bluetooth module breaks
#
# (if system == "aarch64-darwin"
# then self.overlays.unstable-darwin
# else null)
(_: _: { inherit (agenix.packages."x86_64-linux") agenix; })
(_: _: {
unstable = import nixpkgs-unstable {
# system = "x86_64-linux";
inherit system;
config.allowUnfree = true;
};
})
];
}
)
# general modules
agenix.nixosModules.default
# # the host config itself
(
../hosts
+ (
if (system == "x86_64-linux") then
"/${name}/configuration.nix"
else if (system == "aarch64-darwin") then
"/${name}/darwin-configuration.nix"
else
""
)
)
# secrets (have to be added to git (crypted) #lessonslearned)
(
{
lib ? (import <nixpkgs/lib>),
...
}:
let
secretsPath = (../hosts + "/${name}/secrets");
in
{
age.secrets =
lib.mapAttrs'
(
filename: _:
lib.nameValuePair (lib.removeSuffix ".age" filename) { file = secretsPath + "/${filename}"; }
)
(
lib.filterAttrs (name: type: (type == "regular") && (lib.hasSuffix ".age" name)) (
if builtins.pathExists secretsPath then builtins.readDir secretsPath else { }
)
);
}
)
]
++ (if (system == "aarch64-darwin") then [ (home-manager.darwinModules.home-manager) ] else [ ])
++ (
if (homeManagerEnable == true) then
[
{
home-manager = {
useGlobalPkgs = true;
users."${username}" = import (../hosts + "/${hostname}/home_${username}.nix");
};
}
]
else
[ ]
);
};
mapToNixosConfigurations =
{
system ? "x86_64-linux",
...
}@hosts:
builtins.mapAttrs (name: host: generateSystem name host) (
nixpkgs.lib.filterAttrs (n: v: v.system or "" == "x86_64-linux") hosts
);
mapToDarwinConfigurations =
hosts:
builtins.mapAttrs (name: host: generateSystem name host) (
nixpkgs.lib.filterAttrs (n: v: v.system or "" == "aarch64-darwin") hosts
);
generateDeployRsHost =
name:
{
hostname ? name,
ip ? "${name}.pinto-pike.ts.net",
sshUser ? "root",
system ? "x86_64-linux",
...
}:
{
remoteBuild = true;
hostname = "${ip}";
# fastConnection = true;
profiles.system = {
user = "root"; # user to install as
sshUser = sshUser; # user to ssh to as
# make sure people can use sudo
sshOpts = [
"-A"
"-t"
"-S"
];
# sshOpts = [ "-o" "ProxyCommand=none" ];
# make sure to add the nix foo on the darwin hosts to ~/.zshenv
# as the ~/.zshrc doesn't get sourced when ssh-ing into the system
path = (
if system == "x86_64-linux" then
deploy-rs.lib.x86_64-linux.activate.nixos self.nixosConfigurations."${name}"
else if system == "aarch64-darwin" then
deploy-rs.lib.aarch64-darwin.activate.darwin self.darwinConfigurations."${name}"
else
""
);
# Timeout for profile activation.
# This defaults to 240 seconds.
activationTimeout = 600;
# Timeout for profile activation confirmation.
# This defaults to 30 seconds.
confirmTimeout = 120;
};
};
mapToDeployRsConfiguration =
hosts: builtins.mapAttrs (name: host: generateDeployRsHost name host) hosts;
buildHosts =
hosts:
builtins.mapAttrs (name: host: host.config.system.build.toplevel)
# don't build hosts that start with an underscore
(nixpkgs.lib.filterAttrs (name: host: (builtins.substring 0 1 name) != "_") hosts);
# A function taking an attribute set of flake templates, importing their
# flake.nix/output/packages (if there are any) and returning an attribute set
# of their packages (if the template has one or more)
template-packages =
builtins.mapAttrs (name: value:
(((import ../../nix/templates/${name}/flake.nix).outputs)
{ inherit nixpkgs flake-utils pwndbg; })
.packages or { }
);
# TODO(emile): templates
# apply the above function to the templates
# templates = template-packages self.templates;
# TODO(emile): templates
# Merge template packages into root packages with template prefix
# merged-template-packages =
# system:
# let
# lib = nixpkgs.lib;
# in
# lib.foldl (
# acc: tplName:
# let
# tplPkgs = templates.${tplName}.${system} or { };
# prefixed = lib.mapAttrs' (pkgName: pkg: lib.nameValuePair "${tplName}-${pkgName}" pkg) tplPkgs;
# in
# acc // prefixed
# ) { } (builtins.attrNames templates);
}
|