nix-conf/home/scripts/remoteRebuild.nix
2025-09-25 19:58:19 +08:00

10 lines
197 B
Nix

{ pkgs, ... }:
pkgs.writeShellScriptBin "rRebuild" ''
TARGET=$1
BUILD=$2
shift
shift
nixos-rebuild switch --target-host "$TARGET" --build-host "$BUILD" --sudo --ask-sudo-password $@
''