4 lines
153 B
Bash
Executable file
4 lines
153 B
Bash
Executable file
#!/usr/bin/env bash
|
|
set -xe
|
|
export NIXOS_CONFIG=${PWD}/configuration.nix
|
|
nixos-install --max-jobs 5 --cores 4 --no-channel-copy --no-root-passwd "${@}"
|