diff options
-rw-r--r-- | users/grfn/system/system/default.nix | 29 | ||||
-rw-r--r-- | users/grfn/system/system/modules/common.nix | 1 |
2 files changed, 0 insertions, 30 deletions
diff --git a/users/grfn/system/system/default.nix b/users/grfn/system/system/default.nix index 489be1369bc0..bc8f7f8844c0 100644 --- a/users/grfn/system/system/default.nix +++ b/users/grfn/system/system/default.nix @@ -43,33 +43,4 @@ rec { "iso" ]; - - rebuilder = - let - depotPath = "/home/grfn/code/depot"; - - caseFor = hostname: '' - ${hostname}) - echo "Rebuilding NixOS for //users/grfn/nixos/${hostname}" - system=$(nix-build -E '(import ${depotPath} {}).users.grfn.system.system.${hostname}' --no-out-link) - ;; - ''; - in pkgs.writeShellScriptBin "rebuilder" '' - set -ue - if [[ $EUID -ne 0 ]]; then - echo "Oh no! Only root is allowed to rebuild the system!" >&2 - exit 1 - fi - - case $HOSTNAME in - ${caseFor "chupacabra"} - *) - echo "$HOSTNAME is not a known NixOS host!" >&2 - exit 1 - ;; - esac - - nix-env -p /nix/var/nix/profiles/system --set $system - $system/bin/switch-to-configuration switch - ''; } diff --git a/users/grfn/system/system/modules/common.nix b/users/grfn/system/system/modules/common.nix index f25c9ff3288c..741b0473a5a9 100644 --- a/users/grfn/system/system/modules/common.nix +++ b/users/grfn/system/system/modules/common.nix @@ -31,7 +31,6 @@ with lib; file lm_sensors dnsutils - depot.users.grfn.system.system.rebuilder htop ]; |