From f9f9c7249887a14eecfb979508d0a8fc81f2f357 Mon Sep 17 00:00:00 2001 From: aaron Date: Fri, 27 Mar 2026 10:39:22 +0100 Subject: [PATCH] feature(user): add my user to the dialout group in order to access serial terminal --- modules/nixos/users.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/nixos/users.nix b/modules/nixos/users.nix index de34ecc..91aba98 100644 --- a/modules/nixos/users.nix +++ b/modules/nixos/users.nix @@ -5,7 +5,7 @@ users.users.aaron = { isNormalUser = true; group = "users"; - extraGroups = [ "wheel" "networkmanager" ]; + extraGroups = [ "wheel" "networkmanager" "dialout" ]; shell = pkgs.zsh; };