Remove mutableUsers setting from system.nix (it's in impermanence)

This commit is contained in:
ItsDrike 2024-05-15 20:40:16 +02:00
parent 163eafb8f0
commit 130fdae4bf
Signed by: ItsDrike
GPG key ID: FA2745890B7048C0

View file

@ -8,13 +8,6 @@ in
programs.zsh.enable = true;
users = {
# Prevent mutating users outside of our configurations.
# TODO: Solve this, currentry it fails with no password
# specified for root account nor any whell user accounts
# and wants us to set pw manually with passwd, which needs
# mutableUsers
#mutableUsers = false;
users.${cfg.username} = {
isNormalUser = true;
extraGroups = [ "wheel" ];