refactor(hosts/luna): disable mutableUsers

This commit is contained in:
Price Hiller 2024-03-16 03:12:18 -05:00
parent 4f23edeaef
commit bf08aec4b6
Signed by: Price
GPG Key ID: C3FADDE7A8534BEB

View File

@ -1,5 +1,6 @@
{ pkgs, config, ... }: {
security.sudo.wheelNeedsPassword = false;
users.mutableUsers = false;
users.users = {
root.hashedPasswordFile = config.age.secrets.users-root-pw.path;
price = {
@ -19,4 +20,4 @@
files = [ ".bash_history" ];
};
};
}
}