From c9b932ba1b340c14f82c3ad1fdc1c844749db4c8 Mon Sep 17 00:00:00 2001 From: Pedro Rey Anca Date: Wed, 16 Apr 2025 17:20:30 +0200 Subject: [PATCH] Add to dialout group --- modules/core/user.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/core/user.nix b/modules/core/user.nix index 168bec4..47df7a2 100644 --- a/modules/core/user.nix +++ b/modules/core/user.nix @@ -23,7 +23,7 @@ users.users.${username} = { isNormalUser = true; description = "${username}"; - extraGroups = ["networkmanager" "wheel" "i2c" "libvirtd" "adbusers"]; + extraGroups = ["networkmanager" "wheel" "i2c" "libvirtd" "adbusers" "dialout"]; shell = pkgs.zsh; }; nix.settings.allowed-users = ["${username}"];