From c99666fb865c0e993aa319f866828ab927d1aa6b Mon Sep 17 00:00:00 2001 From: Payas Relekar Date: Sat, 23 Dec 2023 22:44:39 +0530 Subject: [PATCH] users: Add payas to dialout and tty groups Because esphome requires them for writing out to serial connection --- modules/users.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/users.nix b/modules/users.nix index 234373c..6db2ea1 100644 --- a/modules/users.nix +++ b/modules/users.nix @@ -9,7 +9,7 @@ in { users.payas = { isNormalUser = true; - extraGroups = [ "wheel" "networkmanager" "adbusers" "docker" "libvirtd" ]; + extraGroups = [ "wheel" "networkmanager" "adbusers" "docker" "libvirtd" "dialout" "tty" ]; home = "/home/${payas}"; description = payas; group = "payas";