mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 15:22:59 +01:00
alsa-utils: fix eval
This commit is contained in:
parent
32872d16ee
commit
478409d4c6
2 changed files with 2 additions and 2 deletions
|
@ -660,5 +660,5 @@ If reloading the module is not an option, proceed to [Nuclear option](#sec-relea
|
|||
|
||||
#### Nuclear option {#sec-release-23.05-migration-pipewire-nuclear}
|
||||
If all else fails, you can still manually copy the contents of the default configuration file
|
||||
from `${pkgs.pipewire.lib}/share/pipewire` to `/etc/pipewire` and edit it to fully override the default.
|
||||
from `${pkgs.pipewire}/share/pipewire` to `/etc/pipewire` and edit it to fully override the default.
|
||||
However, this should be done only as a last resort. Please talk to the Pipewire maintainers if you ever need to do this.
|
||||
|
|
|
@ -17,7 +17,7 @@
|
|||
}:
|
||||
|
||||
let
|
||||
plugin-packages = [ alsa-plugins ] ++ lib.optional withPipewireLib pipewire.lib;
|
||||
plugin-packages = [ alsa-plugins ] ++ lib.optional withPipewireLib pipewire;
|
||||
|
||||
# Create a directory containing symlinks of all ALSA plugins.
|
||||
# This is necessary because ALSA_PLUGIN_DIR must reference only one directory.
|
||||
|
|
Loading…
Reference in a new issue