-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathflake.nix
715 lines (680 loc) Β· 26 KB
/
flake.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
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
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
{
description = "A portable flake for Nix-based development when you cannot necessarily use NixOS";
inputs = {
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
catppuccin.url = "github:catppuccin/nix";
home-manager = {
url = "github:nix-community/home-manager";
inputs = {
nixpkgs.follows = "nixpkgs";
};
};
flake-parts.url = "github:hercules-ci/flake-parts";
nixos-flake.url = "github:srid/nixos-flake";
flocken = {
url = "github:mirkolenz/flocken/v2";
inputs.nixpkgs.follows = "nixpkgs";
inputs.flake-parts.follows = "flake-parts";
inputs.systems.follows = "systems";
};
nix-index-database = {
url = "github:nix-community/nix-index-database";
inputs = {
nixpkgs.follows = "nixpkgs";
};
};
# see https://github.com/nix-systems/default/blob/main/default.nix
systems.url = "github:nix-systems/default";
};
nixConfig = {
extra-trusted-public-keys = [
"sciexp.cachix.org-1:HaliIGqJrFN7CDrzYVHqWS4uSISorWAY1bWNmNl8T08="
];
extra-substituters = [
"https://sciexp.cachix.org"
];
};
outputs =
inputs@{
self,
...
}:
inputs.flake-parts.lib.mkFlake { inherit inputs; } {
systems = import inputs.systems;
imports = [
inputs.nixos-flake.flakeModule
./home
];
perSystem =
{
self',
inputs',
pkgs,
lib,
system,
...
}:
let
# users = {
# root = {
# name = "root";
# uid = "0";
# gid = "0";
# };
# runner = {
# name = "runner";
# uid = "1001";
# gid = "121";
# };
# jovyan = {
# name = "jovyan";
# uid = "1000";
# gid = "100";
# };
# };
users = [
"root"
"jovyan"
"runner"
];
myUserName = "runner";
githubOrg = "cameronraysmith";
myUserUid = "1001";
myUserGid = "121";
includedSystems =
let
envVar = builtins.getEnv "NIX_IMAGE_SYSTEMS";
in
if envVar == "" then
[
"x86_64-linux"
"aarch64-linux"
]
else
builtins.filter (sys: sys != "") (builtins.split " " envVar);
buildMultiUserNixImage = import ./containers/nix.nix;
in
{
legacyPackages = {
# Make home-manager configuration
# homeConfigurations.${myUserName} = homeConfig;
homeConfigurations = builtins.listToAttrs (
map (user: {
name = user;
value = self.nixos-flake.lib.mkHomeConfiguration pkgs (
{ pkgs, ... }:
{
imports = [ self.homeModules.default ];
home.username = user;
home.homeDirectory =
if user == "root" then "/root" else "/${if pkgs.stdenv.isDarwin then "Users" else "home"}/${user}";
}
);
}) users
);
# Combine OCI json for includedSystems and push to registries
nixpodManifest = inputs'.flocken.legacyPackages.mkDockerManifest {
github = {
enable = true;
enableRegistry = true;
token = "$GH_TOKEN";
};
autoTags = {
branch = false;
};
registries = {
"ghcr.io" = {
# enable = lib.mkForce true;
repo = lib.mkForce "${githubOrg}/nixpod";
# username = builtins.getEnv "GITHUB_ACTOR";
# password = "$GH_TOKEN";
};
};
version = builtins.getEnv "VERSION";
imageFiles = builtins.map (sys: self.packages.${sys}.container) includedSystems;
tags = [
(builtins.getEnv "GIT_SHA_SHORT")
(builtins.getEnv "GIT_SHA")
(builtins.getEnv "GIT_REF")
];
};
ghanixManifest = inputs'.flocken.legacyPackages.mkDockerManifest {
github = {
enable = true;
enableRegistry = true;
token = "$GH_TOKEN";
};
autoTags = {
branch = false;
};
registries = {
"ghcr.io" = {
repo = lib.mkForce "${githubOrg}/ghanix";
};
};
version = builtins.getEnv "VERSION";
imageFiles = builtins.map (sys: self.packages.${sys}.ghanix) includedSystems;
tags = [
(builtins.getEnv "GIT_SHA_SHORT")
(builtins.getEnv "GIT_SHA")
(builtins.getEnv "GIT_REF")
];
};
codenixManifest = inputs'.flocken.legacyPackages.mkDockerManifest {
github = {
enable = true;
enableRegistry = true;
token = "$GH_TOKEN";
};
autoTags = {
branch = false;
};
registries = {
"ghcr.io" = {
repo = lib.mkForce "${githubOrg}/codenix";
};
};
version = builtins.getEnv "VERSION";
imageFiles = builtins.map (sys: self.packages.${sys}.codenix) includedSystems;
tags = [
(builtins.getEnv "GIT_SHA_SHORT")
(builtins.getEnv "GIT_SHA")
(builtins.getEnv "GIT_REF")
];
};
jupnixManifest = inputs'.flocken.legacyPackages.mkDockerManifest {
github = {
enable = true;
enableRegistry = true;
token = "$GH_TOKEN";
};
autoTags = {
branch = false;
};
registries = {
"ghcr.io" = {
repo = lib.mkForce "${githubOrg}/jupnix";
};
};
version = builtins.getEnv "VERSION";
imageFiles = builtins.map (sys: self.packages.${sys}.jupnix) includedSystems;
tags = [
(builtins.getEnv "GIT_SHA_SHORT")
(builtins.getEnv "GIT_SHA")
(builtins.getEnv "GIT_REF")
];
};
};
# Enable 'nix fmt' to lint with nixfmt-rfc-style
formatter = pkgs.nixfmt-rfc-style;
# Enable 'nix run' to activate home-manager.
apps.default.program = self'.packages.activate-home;
# Enable 'nix develop' to activate the development shell.
devShells.default = pkgs.mkShell {
name = "nixpod";
nativeBuildInputs = with pkgs; [
act
just
ratchet
];
};
packages = rec {
# Enable 'nix build' to build the home configuration, without
# activating it.
default = self'.legacyPackages.homeConfigurations.${myUserName}.activationPackage;
activate = self'.packages.activate-home;
pamImage = pkgs.dockerTools.buildImage {
name = "pamimage";
tag = "latest";
compressor = "none";
copyToRoot = pkgs.pam;
# runAsRoot = ''
# #!${pkgs.runtimeShell}
# mkdir -p /etc/pam.d
# '';
};
suImage = pkgs.dockerTools.buildImage {
name = "suimage";
tag = "latest";
fromImage = pamImage;
compressor = "none";
copyToRoot = pkgs.su;
};
preSudoImage = pkgs.dockerTools.buildImage {
name = "presudoimage";
tag = "latest";
fromImage = pamImage;
compressor = "none";
copyToRoot = pkgs.sudo;
};
sudoImage = import ./containers/sudoimage.nix {
inherit pkgs preSudoImage;
};
nixpod = buildMultiUserNixImage {
inherit pkgs;
name = "nixpod";
tag = "latest";
maxLayers = 111;
fromImage = sudoImage;
compressor = "zstd";
extraContents = with pkgs; [
default
];
extraPkgs = with pkgs; [
ps
su
sudo
tree
vim
];
nixConf = {
allowed-users = [ "*" ];
experimental-features = [
"nix-command"
"flakes"
];
max-jobs = [ "auto" ];
sandbox = "false";
trusted-users = [
"root"
"jovyan"
"runner"
];
};
entrypoint = [ "/root/.nix-profile/bin/bash" ];
extraEnv = [
# "NIX_REMOTE=daemon"
];
};
# Enable 'nix run .#container to build an OCI tarball with the
# home configuration activated.
container = nixpod;
ghanix =
let
atuinDaemonScript = pkgs.writeScript "atuin-daemon" ''
#!/command/with-contenv ${pkgs.bashInteractive}/bin/bash
printf "running atuin daemon\n\n"
exec ${pkgs.atuin}/bin/atuin daemon
'';
atuinDaemonService = pkgs.runCommand "atuin-daemon" { } ''
mkdir -p $out/etc/services.d/atuindaemon
ln -s ${atuinDaemonScript} $out/etc/services.d/atuindaemon/run
'';
in
buildMultiUserNixImage {
inherit pkgs;
name = "ghanix";
tag = "latest";
maxLayers = 111;
fromImage = sudoImage;
storeOwner = {
uid = 1001;
gid = 0;
uname = "runner";
gname = "wheel";
};
extraPkgs = with pkgs; [
ps
su
sudo
tree
vim
];
extraContents = [
atuinDaemonService
self'.legacyPackages.homeConfigurations.runner.activationPackage
];
extraFakeRootCommands = ''
chown -R runner:wheel /nix
'';
nixConf = {
allowed-users = [ "*" ];
experimental-features = [
"nix-command"
"flakes"
];
max-jobs = [ "auto" ];
sandbox = "false";
trusted-users = [
"root"
"jovyan"
"runner"
];
};
cmd = [
"bash"
"-c"
"su runner -c /activate && su runner && bash"
];
};
codenix =
let
python = pkgs.python3.withPackages (
ps: with ps; [
pip
ipykernel
]
);
username = "jovyan";
storeOwner = {
uid = 1000;
gid = 0;
uname = username;
gname = "wheel";
};
activateUserHomeScript = pkgs.writeScript "activate-user-home-run" ''
#!/command/with-contenv ${pkgs.runtimeShell}
printf "activating home manager\n\n"
/activate
printf "home manager environment\n\n"
printenv | sort
printf "====================\n\n"
'';
activateUserHomeService = pkgs.runCommand "activate-user-home" { } ''
mkdir -p $out/etc/cont-init.d
ln -s ${activateUserHomeScript} $out/etc/cont-init.d/01-activate-user-home
'';
# https://gist.github.com/hyperupcall/99e355405611be6c4e0a38b6e3e8aad0#file-settings-jsonc
installCodeServerExtensionsScript = pkgs.writeScript "install-code-extensions-run" ''
#!/command/with-contenv ${pkgs.runtimeShell}
# disable "donjayamanne.python-environment-manager"
# from "donjayamanne.python-extension-pack"
# due to https://github.com/microsoft/vscode/issues/210792#issuecomment-2186965405
# also leaves out
# "wholroyd.jinja"
# "batisteo.vscode-django"
VSCODE_EXTENSIONS=(
"alefragnani.project-manager"
"Catppuccin.catppuccin-vsc"
"charliermarsh.ruff"
"christian-kohler.path-intellisense"
"cweijan.vscode-database-client2"
"ms-python.python"
"njpwerner.autodocstring"
"KevinRose.vsc-python-indent"
"eamodio.gitlens"
"github.vscode-github-actions"
"GitHub.vscode-pull-request-github"
"ionutvmi.path-autocomplete"
"jnoortheen.nix-ide"
"ms-azuretools.vscode-docker"
"ms-kubernetes-tools.vscode-kubernetes-tools"
"ms-toolsai.jupyter"
"njzy.stats-bar"
"patbenatar.advanced-new-file"
"rangav.vscode-thunder-client"
"redhat.vscode-yaml"
"sleistner.vscode-fileutils"
"stkb.rewrap"
"streetsidesoftware.code-spell-checker"
"tamasfe.even-better-toml"
"vscode-icons-team.vscode-icons"
"vscodevim.vim"
"richie5um2.vscode-sort-json"
)
printf "Listing currently installed extensions...\n\n"
installed_extensions=$(code-server --list-extensions --show-versions)
echo "$installed_extensions"
echo ""
install_command="code-server"
for extension in "''${VSCODE_EXTENSIONS[@]}"; do
install_command+=" --install-extension \"''${extension}\""
done
eval "''${install_command} --force"
if echo "$installed_extensions" | ${pkgs.gnugrep}/bin/grep -q "nefrob.vscode-just-syntax"; then
printf "vscode-just-syntax is already installed.\n"
else
printf "vscode-just-syntax is not installed. Proceeding with installation...\n"
tmpdir=$(mktemp -d) && \
curl --proto '=https' --tlsv1.2 -sSfL -o "$tmpdir/vscode-just-syntax-0.3.0.vsix" https://github.com/nefrob/vscode-just/releases/download/0.3.0/vscode-just-syntax-0.3.0.vsix && \
code-server --install-extension "$tmpdir/vscode-just-syntax-0.3.0.vsix" && \
rm -r "$tmpdir"
fi
printf "Listing extensions after installation...\n\n"
code-server --list-extensions --show-versions
settings_file="''${HOME}/.local/share/code-server/User/settings.json"
mkdir -p "''${HOME}/.local/share/code-server/User"
[ ! -s "''${settings_file}" ] && echo '{}' > "''${settings_file}"
${pkgs.jq}/bin/jq '{
"gitlens.showWelcomeOnInstall": false,
"gitlens.showWhatsNewAfterUpgrades": false,
"python.terminal.activateEnvironment": false,
"update.showReleaseNotes": false,
"workbench.iconTheme": "vscode-icons",
"workbench.colorTheme": "Catppuccin Macchiato",
} + . ' "''${settings_file}" > "''${settings_file}.tmp" && mv "''${settings_file}.tmp" "''${settings_file}"
printf "Updated settings in %s\n\n" "''${settings_file}"
'';
installCodeServerExtensionsService = pkgs.runCommand "install-code-extensions" { } ''
mkdir -p $out/etc/cont-init.d
ln -s ${installCodeServerExtensionsScript} $out/etc/cont-init.d/02-install-code-extensions
'';
codeServerScript = pkgs.writeScript "code-service-run" ''
#!/command/with-contenv ${pkgs.bashInteractive}/bin/bash
printf "code environment\n\n"
export SHELL=${pkgs.zsh}/bin/zsh
printenv | sort
printf "====================\n\n"
printf "Starting code-server with NB_PREFIX=''${NB_PREFIX}\n\n"
cd "''${HOME}"
exec code-server \
--bind-addr 0.0.0.0:8888 \
--disable-telemetry \
--disable-update-check \
--disable-workspace-trust \
--disable-getting-started-override \
--auth none \
"''${HOME}"
'';
codeServerService = pkgs.runCommand "code-service" { } ''
mkdir -p $out/etc/services.d/codeserver
ln -s ${codeServerScript} $out/etc/services.d/codeserver/run
'';
atuinDaemonScript = pkgs.writeScript "atuin-daemon" ''
#!/command/with-contenv ${pkgs.bashInteractive}/bin/bash
printf "running atuin daemon\n\n"
exec ${pkgs.atuin}/bin/atuin daemon
'';
atuinDaemonService = pkgs.runCommand "atuin-daemon" { } ''
mkdir -p $out/etc/services.d/atuindaemon
ln -s ${atuinDaemonScript} $out/etc/services.d/atuindaemon/run
'';
in
buildMultiUserNixImage {
inherit pkgs storeOwner;
name = "codenix";
tag = "latest";
maxLayers = 111;
fromImage = sudoImage;
extraPkgs =
with pkgs;
[
code-server
ps
su
sudo
zsh
]
++ [ python ];
extraContents = [
activateUserHomeService
installCodeServerExtensionsService
atuinDaemonService
codeServerService
self'.legacyPackages.homeConfigurations.${username}.activationPackage
];
extraFakeRootCommands = ''
chown -R ${username}:wheel /nix
'';
nixConf = {
allowed-users = [ "*" ];
experimental-features = [
"nix-command"
"flakes"
];
max-jobs = [ "auto" ];
sandbox = "false";
trusted-users = [
"root"
"jovyan"
"runner"
];
};
extraEnv = [
"NB_USER=${username}"
"NB_UID=1000"
"NB_PREFIX=/"
];
extraConfig = {
ExposedPorts = {
"8888/tcp" = { };
};
};
};
jupnix =
let
python = pkgs.python3.withPackages (
ps: with ps; [
pip
jupyterlab
]
);
username = "jovyan";
storeOwner = {
uid = 1000;
gid = 0;
uname = username;
gname = "wheel";
};
activateUserHomeScript = pkgs.writeScript "activate-user-home-run" ''
#!/command/with-contenv ${pkgs.runtimeShell}
printf "activating home manager\n\n"
/activate
printf "home manager environment\n\n"
printenv | sort
printf "====================\n\n"
'';
activateUserHomeService = pkgs.runCommand "activate-user-home" { } ''
mkdir -p $out/etc/cont-init.d
ln -s ${activateUserHomeScript} $out/etc/cont-init.d/01-activate-user-home
'';
createJupyterLogScript = pkgs.writeScript "create-jupyter-log-run" ''
#!/command/with-contenv ${pkgs.runtimeShell}
/run/wrappers/bin/sudo mkdir -p /var/log/jupyterlab
/run/wrappers/bin/sudo chown nobody:nobody /var/log/jupyterlab
/run/wrappers/bin/sudo chmod 02777 /var/log/jupyterlab
'';
# createJupyterLogService will not be used if not added to extraContents
# in buildMultiUserNixImage below
createJupyterLogService = pkgs.runCommand "create-jupyter-log" { } ''
mkdir -p $out/etc/cont-init.d
ln -s ${createJupyterLogScript} $out/etc/cont-init.d/02-create-jupyter-log
'';
jupyterServerScript = pkgs.writeScript "jupyter-service-run" ''
#!/command/with-contenv ${pkgs.bashInteractive}/bin/bash
printf "jupyter environment\n\n"
export JUPYTER_RUNTIME_DIR="/tmp/jupyter_runtime"
export SHELL=${pkgs.zsh}/bin/zsh
printenv | sort
printf "====================\n\n"
printf "Starting jupyterlab with NB_PREFIX=''${NB_PREFIX}\n\n"
cd "''${HOME}"
exec jupyter lab \
--notebook-dir="''${HOME}" \
--ip=0.0.0.0 \
--no-browser \
--allow-root \
--port=8888 \
--ServerApp.token="" \
--ServerApp.password="" \
--ServerApp.allow_origin="*" \
--ServerApp.allow_remote_access=True \
--ServerApp.terminado_settings="shell_command=['${pkgs.zsh}/bin/zsh']" \
--ServerApp.authenticate_prometheus=False \
--ServerApp.base_url="''${NB_PREFIX}"
'';
jupyterLog = pkgs.writeScript "jupyter-log" ''
#!/command/with-contenv ${pkgs.runtimeShell}
exec logutil-service /var/log/jupyterlab
'';
# # Add the following to redirect stdout logging and manage rotation
# mkdir -p $out/etc/services.d/jupyterlab/log
# ln -s ${jupyterLog} $out/etc/services.d/jupyterlab/log/run
jupyterServerService = pkgs.runCommand "jupyter-service" { } ''
mkdir -p $out/tmp/jupyter_runtime
mkdir -p $out/etc/services.d/jupyterlab
ln -s ${jupyterServerScript} $out/etc/services.d/jupyterlab/run
'';
atuinDaemonScript = pkgs.writeScript "atuin-daemon" ''
#!/command/with-contenv ${pkgs.bashInteractive}/bin/bash
printf "running atuin daemon\n\n"
exec ${pkgs.atuin}/bin/atuin daemon
'';
atuinDaemonService = pkgs.runCommand "atuin-daemon" { } ''
mkdir -p $out/etc/services.d/atuindaemon
ln -s ${atuinDaemonScript} $out/etc/services.d/atuindaemon/run
'';
in
buildMultiUserNixImage {
inherit pkgs storeOwner;
name = "jupnix";
tag = "latest";
maxLayers = 111;
fromImage = sudoImage;
extraPkgs =
with pkgs;
[
musl
ps
su
sudo
zsh
]
++ [ python ];
extraContents = [
activateUserHomeService
atuinDaemonService
jupyterServerService
self'.legacyPackages.homeConfigurations.${username}.activationPackage
];
extraFakeRootCommands = ''
chown -R ${username}:wheel /nix
chown -R ${username}:wheel /tmp/jupyter_runtime
'';
nixConf = {
allowed-users = [ "*" ];
experimental-features = [
"nix-command"
"flakes"
];
max-jobs = [ "auto" ];
sandbox = "false";
trusted-users = [
"root"
"jovyan"
"runner"
];
};
extraEnv = [
"NB_USER=${username}"
"NB_UID=1000"
"NB_PREFIX=/"
];
extraConfig = {
ExposedPorts = {
"8888/tcp" = { };
};
};
};
};
# `nix run .#update` vs `nix flake update`
nixos-flake = {
primary-inputs = [
"nixpkgs"
"home-manager"
"nixos-flake"
];
};
};
};
}