From bfb551d905b0ebde90da01baf42db679eb4f9d90 Mon Sep 17 00:00:00 2001 From: TheWanderingCrow Date: Fri, 10 Jan 2025 13:17:58 -0500 Subject: [PATCH] add crow to dialout --- modules/users/crow/user.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/users/crow/user.nix b/modules/users/crow/user.nix index a35f8e7..b97815d 100644 --- a/modules/users/crow/user.nix +++ b/modules/users/crow/user.nix @@ -7,7 +7,7 @@ config.users.users.crow = lib.mkIf config.user.crow.enable { isNormalUser = true; initialPassword = "changeme"; - extraGroups = ["wheel" "networkmanager" "audio" "plugdev"]; + extraGroups = ["wheel" "networkmanager" "audio" "plugdev" "dialout"]; }; config.home-manager.users.crow = lib.mkIf config.user.crow.home.enable ./home.nix;