mirror of
https://git.selfprivacy.org/SelfPrivacy/selfprivacy-nixos-config.git
synced 2025-03-21 04:49:30 +00:00
configure NixOS to allow configuration without password nor ssh key
This commit is contained in:
parent
d389b6785f
commit
2d4e7e89a1
1 changed files with 2 additions and 1 deletions
|
@ -3,8 +3,9 @@ let
|
|||
cfg = config.selfprivacy;
|
||||
in
|
||||
{
|
||||
users.mutableUsers = false;
|
||||
users = {
|
||||
mutableUsers = false;
|
||||
allowNoPasswordLogin = true;
|
||||
users = {
|
||||
"${cfg.username}" = {
|
||||
isNormalUser = true;
|
||||
|
|
Loading…
Add table
Reference in a new issue