temp/testusers: add user, remove from savarcast

This commit is contained in:
makefu 2023-09-03 14:26:15 +02:00
parent e9f65ab02d
commit 260d03ef0e
No known key found for this signature in database
GPG key ID: 36F7711F3FC0F225
2 changed files with 6 additions and 3 deletions

View file

@ -2,7 +2,7 @@
{
imports = [
../../2configs/temp/testusers.nix
# ../../2configs/temp/testusers.nix
# hardware
./proxmox-vm

View file

@ -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" ];
};
}