Felix Singer has submitted this change. ( https://review.coreboot.org/c/coreboot/+/83851?usp=email )
Change subject: util/liveiso/nixos/graphical: Replace PulseAudio with PipeWire ......................................................................
util/liveiso/nixos/graphical: Replace PulseAudio with PipeWire
PipeWire is the successor of PulseAudio. So use that instead.
Change-Id: Ib557925e481ab72a31a64c4bf353a261dff4296d Signed-off-by: Felix Singer felixsinger@posteo.net Reviewed-on: https://review.coreboot.org/c/coreboot/+/83851 Reviewed-by: Elyes Haouas ehaouas@noos.fr Tested-by: build bot (Jenkins) no-reply@coreboot.org Reviewed-by: Jan Philipp Groß jeangrande@mailbox.org --- M util/liveiso/nixos/graphical.nix 1 file changed, 7 insertions(+), 5 deletions(-)
Approvals: build bot (Jenkins): Verified Elyes Haouas: Looks good to me, approved Jan Philipp Groß: Looks good to me, but someone else must approve
diff --git a/util/liveiso/nixos/graphical.nix b/util/liveiso/nixos/graphical.nix index 8d51caf..b4188f4 100644 --- a/util/liveiso/nixos/graphical.nix +++ b/util/liveiso/nixos/graphical.nix @@ -7,11 +7,6 @@ ./common.nix ];
- hardware.pulseaudio = { - enable = true; - package = pkgs.pulseaudioFull; - }; - security.polkit = { enable = true; extraConfig = '' @@ -38,6 +33,13 @@ desktopManager.gnome.enable = true; };
+ hardware.pulseaudio.enable = false; + services.pipewire = { + enable = true; + pulse.enable = true; + alsa.enable = true; + }; + users.users.user.extraGroups = [ "audio" "video" "input" ];
environment.systemPackages = with pkgs; [