From 130fdae4bffd5f726ed90c0b17213e4275792dbb Mon Sep 17 00:00:00 2001 From: ItsDrike Date: Wed, 15 May 2024 20:40:16 +0200 Subject: [PATCH] Remove mutableUsers setting from system.nix (it's in impermanence) --- system/shared/system.nix | 7 ------- 1 file changed, 7 deletions(-) diff --git a/system/shared/system.nix b/system/shared/system.nix index 31d21f4..28e4c9e 100644 --- a/system/shared/system.nix +++ b/system/shared/system.nix @@ -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" ];