From ef993520b8ca56af2ecb5b471ca09d02970d7f17 Mon Sep 17 00:00:00 2001 From: Jens Nolte <jens@nightmarestudio.de> Date: Wed, 8 Jan 2020 03:42:52 +0100 Subject: [PATCH] Add primary user to 'dialout' group --- nixos/layers/base.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nixos/layers/base.nix b/nixos/layers/base.nix index 8bbb006..d65cad9 100644 --- a/nixos/layers/base.nix +++ b/nixos/layers/base.nix @@ -80,7 +80,7 @@ uid = 1000; isNormalUser = true; passwordFile = "/secrets/passwords/jens"; - extraGroups = [ "wheel" "audio" ]; + extraGroups = [ "wheel" "audio" "dialout" ]; }; }; } -- GitLab