nix: update inputs
[julm/julm-nix.git] / install
diff --git a/install b/install
index cfaae6ff1d59c3beba263e0355fdf3a8e3a222b8..fa3c41c2a276b6c6cc09cbbd0cdb7a28888d44c9 100755 (executable)
--- a/install
+++ b/install
@@ -1,7 +1,12 @@
 #!/bin/sh -eux
-if test $(id -u) != 0
+if test "$(id -u)" != 0
 then sudo "$0" "$@"
 else
-  nixos-rebuild switch --flake "${0%/*}"/ "$@"
-  nix-env --delete-generations +2 --profile /nix/var/nix/profiles/system
+  cd "${0%/*}"
+  chmod -R g-rwx,o-rwx "$PWD/private/root"
+  ln -sfn "$PWD/private/root" /root/private
+  trap 'git reset private/root' EXIT
+  git rm -rf --cached --ignore-unmatch private/root # prevent copying to /nix/store
+  nixos-rebuild switch --flake . "$@"
+  nix-env --delete-generations +9 --profile /nix/var/nix/profiles/system
 fi