diff options
author | EuAndreh <eu@euandre.org> | 2023-10-17 09:18:45 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2023-10-17 09:18:49 -0300 |
commit | c98cd05484404bb22226c19f8280b6499a552fa1 (patch) | |
tree | 7191f514e496d017bfd94c73b23556c7158ec40e | |
parent | etc/guix/home.scm: Add APL compilers (diff) | |
download | dotfiles-c98cd05484404bb22226c19f8280b6499a552fa1.tar.gz dotfiles-c98cd05484404bb22226c19f8280b6499a552fa1.tar.xz |
etc/nix/configuration.nix: Add "dialout" to extraGroups
As serial devices have the "dialout" rw group permissions:
$ l /dev/tty[A-Z]*
crw-rw---- 1 root dialout 166, 0 oct. 17 09:15 /dev/ttyACM0
crw-rw---- 1 root dialout 4, 64 oct. 14 01:07 /dev/ttyS0
crw-rw---- 1 root dialout 4, 65 oct. 7 06:40 /dev/ttyS1
crw-rw---- 1 root dialout 4, 66 oct. 7 06:40 /dev/ttyS2
crw-rw---- 1 root dialout 4, 67 oct. 7 06:40 /dev/ttyS3
-rw-r--r-- | etc/nix/configuration.nix | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/etc/nix/configuration.nix b/etc/nix/configuration.nix index 05bda69..4bfaa4c 100644 --- a/etc/nix/configuration.nix +++ b/etc/nix/configuration.nix @@ -271,7 +271,7 @@ isNormalUser = true; uid = 1000; description = "EuAndreh"; - extraGroups = [ "wheel" "networkmanager" "docker" "adbusers" ]; + extraGroups = [ "wheel" "networkmanager" "docker" "adbusers" "dialout" ]; }; }; # From the Guix manual: |