From 77be98ca2688c9edf80bb0ce2b6cfee1673f448f Mon Sep 17 00:00:00 2001 From: Patrick Menking Date: Tue, 17 Sep 2024 16:26:23 -0400 Subject: [PATCH] Add pulseaudio properly --- modules/core.nix | 3 +++ modules/users/default.nix | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/modules/core.nix b/modules/core.nix index 1f20cb3..555f42d 100644 --- a/modules/core.nix +++ b/modules/core.nix @@ -47,6 +47,9 @@ }; hypr.enable = lib.mkDefault false; + + # Configure pulseaudio + hardware.pulseaudio.enable = lib.mkDefault true; }; } diff --git a/modules/users/default.nix b/modules/users/default.nix index e9bb8b8..3b4d3a6 100644 --- a/modules/users/default.nix +++ b/modules/users/default.nix @@ -2,6 +2,6 @@ users.users.crow = lib.mkIf config.users.crow.enable { isNormalUser = true; initialPassword = "changeme"; - extraGroups = [ "wheel" "networkmanager" ]; + extraGroups = [ "wheel" "networkmanager" "audio" ]; }; }