2 Commits

Author SHA1 Message Date
jackos1998 f3a0ca3f57 devshell: Allow deploy-multi without options
CI / Check, build and cache nixfiles (push) Has been cancelled
2026-06-13 22:11:23 +01:00
jackos1998 023b3f6605 nixos/tmproot: Add manpage cache 2026-06-13 21:53:29 +01:00
2 changed files with 6 additions and 1 deletions
+5 -1
View File
@@ -144,7 +144,11 @@ in
help = "Deploy multiple flakes at once"; help = "Deploy multiple flakes at once";
command = '' command = ''
for f in $@; do for f in $@; do
deploy "$O" $f if [ -n "''${O:-}" ]; then
deploy "$O" $f
else
deploy $f
fi
done done
''; '';
} }
+1
View File
@@ -145,6 +145,7 @@ in
# Also the script runs before impermanence does. # Also the script runs before impermanence does.
"/var/lib/nixos" "/var/lib/nixos"
"/var/lib/systemd" "/var/lib/systemd"
"/var/cache/man"
{ directory = "/root/.cache/nix"; mode = "0700"; } { directory = "/root/.cache/nix"; mode = "0700"; }
# Including these unconditionally due to infinite recursion problems... # Including these unconditionally due to infinite recursion problems...