From 0bc14e1e004efcb6b70b87cbceb4eae092838742 Mon Sep 17 00:00:00 2001 From: Nicole Dresselhaus Date: Wed, 11 Jun 2025 12:30:34 +0200 Subject: [PATCH] chore: added wheel to sudoers, added hashed pw for nicole --- configuration.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/configuration.nix b/configuration.nix index 1edc81b..d8b16ae 100644 --- a/configuration.nix +++ b/configuration.nix @@ -12,6 +12,7 @@ users.users.nicole = { isNormalUser = true; + hashedPassword = "sha512-$6$p73d5mOLoSuJGOol$KRlszaPXZK9/frADlfR3kAr/57DD5f4.CPTGNNX80QWEWFE5y.bM1WiZwmRHiAlrws3q/zCDQ6AqeSyCUX.8U/"; extraGroups = [ "wheel" "docker" "libvirtd" ]; openssh.authorizedKeys.keys = [ "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIGAsiKDWCwyf1usprg3K6Zk0xE9S4DX6+Bc4+nIOZGmf drezil@Manticore" @@ -19,6 +20,7 @@ }; system.stateVersion = "25.05"; # ← einmalig festnageln + security.sudo.wheelNeedsPassword = false; services.openssh.enable = true; services.zfs.autoScrub.enable = true; # Snapshots & Details kommen später