diff options
author | Alan Pearce | 2019-10-13 15:14:10 +0200 |
---|---|---|
committer | Alan Pearce | 2019-10-16 19:27:33 +0200 |
commit | fca74b28dfad65c46742c8993861551fd28cb113 (patch) | |
tree | aba29c2015abf8faf1a1590351ab51f36a961659 /system/settings | |
parent | a7703b258aa3c8d30543a7de41ac12f827bd845a (diff) | |
download | nixfiles-fca74b28dfad65c46742c8993861551fd28cb113.tar.lz nixfiles-fca74b28dfad65c46742c8993861551fd28cb113.tar.zst nixfiles-fca74b28dfad65c46742c8993861551fd28cb113.zip |
Set an initial password for VMs and new installs
Diffstat (limited to 'system/settings')
-rw-r--r-- | system/settings/configuration/user.nix | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/system/settings/configuration/user.nix b/system/settings/configuration/user.nix index e7362bce..def1a765 100644 --- a/system/settings/configuration/user.nix +++ b/system/settings/configuration/user.nix @@ -5,6 +5,7 @@ isNormalUser = true; extraGroups = [ "audio" "wheel" "lp" "adbusers" "docker" "nitrokey" "dialout" "networkmanager" ]; shell = "/run/current-system/sw/bin/zsh"; + initialPassword = "password"; home = "/home/alan"; uid = 1000; }; |