From 3784b4a6feb08f01e963b0b228fee3d356962daf Mon Sep 17 00:00:00 2001 From: Florian RICHER Date: Sun, 20 Aug 2023 12:39:36 +0200 Subject: [PATCH] Add pulseaudio for pipewire --- README.md | 1 + modules/pipewire.nix | 4 ++++ 2 files changed, 5 insertions(+) diff --git a/README.md b/README.md index db61d9b..c9ebc35 100644 --- a/README.md +++ b/README.md @@ -8,3 +8,4 @@ nixos-rebuild switch --flake flake_path_directory#hostname - https://github.com/ryan4yin/nix-config/tree/v0.0.2 - https://github.com/LudovicoPiero/dotfiles +- https://github.com/donovanglover/nix-config/ diff --git a/modules/pipewire.nix b/modules/pipewire.nix index c28f7dc..b740ba5 100644 --- a/modules/pipewire.nix +++ b/modules/pipewire.nix @@ -14,4 +14,8 @@ jack.enable = true; }; }; + + environment.systemPackages = with pkgs; [ + pulseaudio + ]; }