summaryrefslogtreecommitdiffstats
path: root/nixos/modules/services/desktops
diff options
context:
space:
mode:
authoréclairevoyant <848000+eclairevoyant@users.noreply.github.com>2024-03-26 16:20:19 -0400
committeréclairevoyant <848000+eclairevoyant@users.noreply.github.com>2024-03-26 16:41:52 -0400
commitd2843640cb8024dd761825e04bc0aae2ac822edf (patch)
tree75ce6af0493fec85970fe678612ec945c77ea494 /nixos/modules/services/desktops
parentff8f1a1f4ec92908fa42260700b9253a9d53865d (diff)
nixos/wireplumber: remove `lib.mdDoc` (no-op)
Diffstat (limited to 'nixos/modules/services/desktops')
-rw-r--r--nixos/modules/services/desktops/pipewire/wireplumber.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/nixos/modules/services/desktops/pipewire/wireplumber.nix b/nixos/modules/services/desktops/pipewire/wireplumber.nix
index de177d0e4ef3..c55535a5cd99 100644
--- a/nixos/modules/services/desktops/pipewire/wireplumber.nix
+++ b/nixos/modules/services/desktops/pipewire/wireplumber.nix
@@ -14,20 +14,20 @@ in
type = lib.types.bool;
default = config.services.pipewire.enable;
defaultText = lib.literalExpression "config.services.pipewire.enable";
- description = lib.mdDoc "Whether to enable WirePlumber, a modular session / policy manager for PipeWire";
+ description = "Whether to enable WirePlumber, a modular session / policy manager for PipeWire";
};
package = lib.mkOption {
type = lib.types.package;
default = pkgs.wireplumber;
defaultText = lib.literalExpression "pkgs.wireplumber";
- description = lib.mdDoc "The WirePlumber derivation to use.";
+ description = "The WirePlumber derivation to use.";
};
configPackages = lib.mkOption {
type = lib.types.listOf lib.types.package;
default = [ ];
- description = lib.mdDoc ''
+ description = ''
List of packages that provide WirePlumber configuration, in the form of
`share/wireplumber/*/*.lua` files.
@@ -40,7 +40,7 @@ in
type = lib.types.listOf lib.types.package;
default = [];
example = lib.literalExpression "[ pkgs.lsp-plugins ]";
- description = lib.mdDoc ''
+ description = ''
List of packages that provide LV2 plugins in `lib/lv2` that should
be made available to WirePlumber for [filter chains][wiki-filter-chain].