From 5170b0303b140a5791387c2c29f92d91fbc1676e Mon Sep 17 00:00:00 2001 From: Ingolf Wagner Date: Mon, 10 Jun 2024 16:21:52 +0200 Subject: [PATCH] add wheel again, because of sshuttle --- components/mainUser.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/mainUser.nix b/components/mainUser.nix index 855385d..4805d9e 100644 --- a/components/mainUser.nix +++ b/components/mainUser.nix @@ -71,7 +71,7 @@ in uid = cfg.uid; home = "/home/${cfg.userName}"; initialPassword = cfg.userName; - extraGroups = [ "networkmanager" "transmission" "wireshark" "audio" "pipewire" "input" ] + extraGroups = [ "wheel" "networkmanager" "transmission" "wireshark" "audio" "pipewire" "input" ] ++ dockerGroup ++ vboxGroup ++ cfg.extraGroups; openssh.authorizedKeys.keyFiles = cfg.authorizedKeyFiles; group = config.users.groups.mainUser.name;