mirror of
https://git.selfprivacy.org/SelfPrivacy/selfprivacy-nixos-config.git
synced 2024-11-25 12:31:27 +00:00
configure NixOS to allow configuration without password nor ssh key
This commit is contained in:
parent
d389b6785f
commit
2d4e7e89a1
|
@ -3,8 +3,9 @@ let
|
||||||
cfg = config.selfprivacy;
|
cfg = config.selfprivacy;
|
||||||
in
|
in
|
||||||
{
|
{
|
||||||
users.mutableUsers = false;
|
|
||||||
users = {
|
users = {
|
||||||
|
mutableUsers = false;
|
||||||
|
allowNoPasswordLogin = true;
|
||||||
users = {
|
users = {
|
||||||
"${cfg.username}" = {
|
"${cfg.username}" = {
|
||||||
isNormalUser = true;
|
isNormalUser = true;
|
||||||
|
|
Loading…
Reference in a new issue