From 9e52c0ac727e3c8d3c851d4da9e9b096a2f2746c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Victor=20I=C8=99an?= Date: Fri, 19 Dec 2025 19:15:17 +0100 Subject: [PATCH] user variable --- hosts/isengard.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/hosts/isengard.nix b/hosts/isengard.nix index 5aeb3e2..37b6c5c 100644 --- a/hosts/isengard.nix +++ b/hosts/isengard.nix @@ -8,9 +8,9 @@ programs.zsh.enable = true; users.defaultUserShell = pkgs.zsh; - users.users.myUser = { + users.users.${myUser} = { isNormalUser = true; - extraGroups = [ "wheel" "docker" ]; + extraGroups = [ "wheel" ]; openssh.authorizedKeys.keys = [ "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIOiNyGO4RAxSdxvn2ZIBZ2Ze4iVVMrBNmu/V9JO70PoT victor@battleship" ];