From 8f8d006c77f036b4fcebcea4e0d8d23d924fc2d2 Mon Sep 17 00:00:00 2001 From: kenny Date: Thu, 2 Oct 2025 15:11:20 +0300 Subject: [PATCH] corrected hash password value + created boxuser group in box --- hosts/box/user.nix | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/hosts/box/user.nix b/hosts/box/user.nix index 366e686..51f1938 100644 --- a/hosts/box/user.nix +++ b/hosts/box/user.nix @@ -4,10 +4,11 @@ users.users.boxuser = { isNormalUser = true; group = "boxuser"; extraGroups = ["wheel" "docker" "networkmanager"]; # Enable ‘sudo’ for the user. - hashedPassword = "$6$Gk6L21XBSf.YbfU1$eadMLbwvAgudTjPOLCsZfRNxfGptARnAazhs0xz/GcNEYGQS/GjLov/jJsHnPIKBNIPQJEG4XhZ3K097bfi -1c1"; + hashedPassword = "$6$Gk6L21XBSf.YbfU1$eadMLbwvAgudTjPOLCsZfRNxfGptARnAazhs0xz/GcNEYGQS/GjLov/jJsHnPIKBNIPQJEG4XhZ3K097bfi1c1"; packages = with pkgs; [ fastfetch ]; }; + +users.groups.boxuser = {}; }