1
0
Fork 0

Remove root pw in container

This commit is contained in:
Malte Brandy 2018-06-09 04:23:15 +02:00
parent b23b3419c3
commit c696837130
2 changed files with 3 additions and 1 deletions

View file

@ -31,7 +31,6 @@ in {
mutableUsers = false;
users.root = {
openssh.authorizedKeys.keys = me.keys;
passwordFile = me.pw-file;
};
};
}

View file

@ -13,5 +13,8 @@ in {
openssh.authorizedKeys.keys = me.keys;
passwordFile = me.pw-file;
};
root = {
passwordFile = me.pw-file;
};
};
}