yt-dlp: embed subs and remove them from disk
[julm/julm-nix.git] / install
diff --git a/install b/install
index fa3c41c2a276b6c6cc09cbbd0cdb7a28888d44c9..563dc4454c79a2bb14d06d34d460107756c9ed5d 100755 (executable)
--- a/install
+++ b/install
@@ -1,12 +1,9 @@
 #!/bin/sh -eux
-if test "$(id -u)" != 0
-then sudo "$0" "$@"
-else
-  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
+cd "${0%/*}"
+chmod -R g-rwx,o-rwx "$PWD/private/root"
+trap 'git reset private/root' EXIT
+git rm -rf --cached --ignore-unmatch private/root # prevent copying to /nix/store
+sudo ln -sfn "$PWD/private/root" /root/private
+# To build offline, use: --option no-net 1 --option substituters ""
+sudo time nixos-rebuild switch --flake . "$@"
+sudo nix-env --delete-generations +9 --profile /nix/var/nix/profiles/system