summaryrefslogtreecommitdiff
path: root/configuration/core
diff options
context:
space:
mode:
authorJasper Ras <jaspert.ras@gmail.com>2025-02-09 20:28:50 +0100
committerJasper Ras <jaspert.ras@gmail.com>2025-02-09 20:28:50 +0100
commit6521db258a8ce08dbb6f741c4bd25df4221eb2c9 (patch)
tree2510b0c691f0474a17e2023b3a20ff0e9fb7aaa9 /configuration/core
parent73616d498ca7e15c07ab53744da42db56ca51010 (diff)
no longer use immutable users and put the hashed pw in repo
Diffstat (limited to 'configuration/core')
-rw-r--r--configuration/core/users.nix2
1 files changed, 0 insertions, 2 deletions
diff --git a/configuration/core/users.nix b/configuration/core/users.nix
index 0be3fa4..ec12a9f 100644
--- a/configuration/core/users.nix
+++ b/configuration/core/users.nix
@@ -5,10 +5,8 @@
security.sudo.execWheelOnly = true;
security.sudo.wheelNeedsPassword = false;
- users.mutableUsers = false;
users.users.jras = {
createHome = true;
- hashedPassword = "$6$TznUKJuLwtXUaxhf$aod7gOgTXq4sTg8IPEX3HkiZgFHWCNUl0qmJUKHYQYQG8cPFjxCfmXREZHUYtQD2/estrbuCjIqoiLQKofdel.";
isNormalUser = true;
extraGroups = [ "wheel" ];
shell = pkgs.zsh;