Felix Singer has uploaded this change for review. ( 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 felixsingeer@posteo.net --- M util/liveiso/nixos/graphical.nix 1 file changed, 7 insertions(+), 5 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/51/83851/1
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; [