From 84105829b12029af9eac65ea2701cfae753f778e Mon Sep 17 00:00:00 2001 From: Jordan Holt Date: Sun, 19 Jan 2025 14:22:23 +0000 Subject: [PATCH] Add default user to audio group --- modules/home-manager/options.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/modules/home-manager/options.nix b/modules/home-manager/options.nix index a314e91..c0010b9 100644 --- a/modules/home-manager/options.nix +++ b/modules/home-manager/options.nix @@ -87,9 +87,10 @@ with lib; inherit name; isNormalUser = true; extraGroups = [ + "audio" + "lxd" "networkmanager" "wheel" - "lxd" ]; description = "Jordan Holt"; useDefaultShell = true;