virtualbox-image.nix: initialRootPassword setting should be easily overrideable

This commit is contained in:
Shea Levy 2014-02-14 09:06:26 -05:00
parent 6a95e90f27
commit 48b8118f2c

View File

@ -111,5 +111,5 @@ with pkgs.lib;
# Prevent logging in as root without a password. For NixOps, we
# don't need this because the user can login via SSH, and for the
# demo images, there is a demo user account that can sudo to root.
security.initialRootPassword = "!";
security.initialRootPassword = mkDefault "!";
}