From 931e6f1c8f7634e2d57754e40c64d106c0e21144 Mon Sep 17 00:00:00 2001 From: Alexander Wainwright Date: Sat, 21 Feb 2026 13:20:32 +1000 Subject: [PATCH] Add user to dialout --- hosts/modules/base.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hosts/modules/base.nix b/hosts/modules/base.nix index c69a3ff..8e165fb 100644 --- a/hosts/modules/base.nix +++ b/hosts/modules/base.nix @@ -4,7 +4,7 @@ users.users.alex = { isNormalUser = true; description = "Alexander Wainwright"; - extraGroups = [ "networkmanager" "wheel" ]; + extraGroups = [ "networkmanager" "wheel" "dialout" ]; packages = with pkgs; [ # thunderbird ];