From 10ae8e8353f2e71655d37d760ee34ea7cb51e58e Mon Sep 17 00:00:00 2001 From: Trolli Schmittlauch Date: Sun, 3 Feb 2019 19:40:02 +0100 Subject: [PATCH] add user to dialout group for /dev/ttyUSB0 communication with diving computer --- nixos/configuration.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nixos/configuration.nix b/nixos/configuration.nix index 089aad8..9416d69 100644 --- a/nixos/configuration.nix +++ b/nixos/configuration.nix @@ -138,7 +138,7 @@ in { users.extraUsers.spiollinux = { isNormalUser = true; uid = 1000; - extraGroups = [ "vboxusers" "wheel" "networkmanager" "scanner" "lp" "wireshark"]; + extraGroups = [ "vboxusers" "wheel" "networkmanager" "scanner" "lp" "wireshark" "dialout" ]; shell = pkgs.zsh; };