Enable strictDeps on all our toplevel packages #12

Open
abonerib wants to merge 473 commits from abonerib/bscpkgs:enableStrictDeps into master
Showing only changes of commit 6cb079a44e - Show all commits

16
rebuild.sh Executable file
View File

@ -0,0 +1,16 @@
#!/bin/sh -e
if [ "$(id -u)" != 0 ]; then
echo "Needs root permissions"
exit 1
fi
host=$(hostname)
conf="$(readlink -f .)/${host}/configuration.nix"
if [ ! -e "$conf" ]; then
echo "Missing config $conf"
exit 1
fi
NIXOS_CONFIG="${conf}" nixos-rebuild switch