From c4f23ab4fd96a921787b748a64a29063a5b4f10b Mon Sep 17 00:00:00 2001 From: Dmitry Voronin Date: Wed, 21 Feb 2024 04:32:42 +0300 Subject: [PATCH] Bootstrap : Disable root pw ask when building from a flake. --- .config/bash/module/Bootstrap.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.config/bash/module/Bootstrap.sh b/.config/bash/module/Bootstrap.sh index 1498f52..4ae199e 100644 --- a/.config/bash/module/Bootstrap.sh +++ b/.config/bash/module/Bootstrap.sh @@ -63,6 +63,6 @@ function bootstrap_nixos() { if [[ "${host}" = "" ]]; then nixos-install else - nixos-install --flake "${_nix_system_config}#${host}" + nixos-install --no-root-password --flake "${_nix_system_config}#${host}" fi }