From 260d03ef0e14fa53c2a243251d2514960186fc35 Mon Sep 17 00:00:00 2001 From: makefu Date: Sun, 3 Sep 2023 14:26:15 +0200 Subject: [PATCH] temp/testusers: add user, remove from savarcast --- 1systems/savarcast/config.nix | 2 +- 2configs/temp/testusers.nix | 7 +++++-- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/1systems/savarcast/config.nix b/1systems/savarcast/config.nix index 84e713f..51bfd26 100644 --- a/1systems/savarcast/config.nix +++ b/1systems/savarcast/config.nix @@ -2,7 +2,7 @@ { imports = [ - ../../2configs/temp/testusers.nix + # ../../2configs/temp/testusers.nix # hardware ./proxmox-vm diff --git a/2configs/temp/testusers.nix b/2configs/temp/testusers.nix index d98c0b2..fdc2705 100644 --- a/2configs/temp/testusers.nix +++ b/2configs/temp/testusers.nix @@ -1,4 +1,7 @@ { - users.users.testi.hashedPassword = "$y$j9T$2GMbDpeh90cUXmdIR32g8/$8aUhDcpo22UYLGu6yiWflzSayAnCm5XNXNVIQOVTQk4"; - users.users.testi.extraGroups = [ "sudo" "wheel" ]; + users.users.testi = { + hashedPassword = "$y$j9T$2GMbDpeh90cUXmdIR32g8/$8aUhDcpo22UYLGu6yiWflzSayAnCm5XNXNVIQOVTQk4"; + isNormalUser = true; + extraGroups = [ "sudo" "wheel" ]; + }; }