From eb82fd2bbc2982653398940759c1c9da63694635 Mon Sep 17 00:00:00 2001 From: kenny Date: Thu, 2 Oct 2025 15:08:56 +0300 Subject: [PATCH] Using hashedPassword for the pi + set primary group --- hosts/box/user.nix | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/hosts/box/user.nix b/hosts/box/user.nix index 3694ee5..366e686 100644 --- a/hosts/box/user.nix +++ b/hosts/box/user.nix @@ -2,8 +2,10 @@ { users.users.boxuser = { isNormalUser = true; + group = "boxuser"; extraGroups = ["wheel" "docker" "networkmanager"]; # Enable ‘sudo’ for the user. - password = "boxuser"; + hashedPassword = "$6$Gk6L21XBSf.YbfU1$eadMLbwvAgudTjPOLCsZfRNxfGptARnAazhs0xz/GcNEYGQS/GjLov/jJsHnPIKBNIPQJEG4XhZ3K097bfi +1c1"; packages = with pkgs; [ fastfetch ];