nixos/lxd: fix ui.enable desc

Otherwise it would show up as "Whether to enable Enables the (experimental) LXD UI. ."

Now is just "Whether to enable (experimental) LXD UI."
This commit is contained in:
Maciej Krüger 2023-10-12 15:21:18 +02:00
parent 2c05f67832
commit d934d20cd3
No known key found for this signature in database
GPG Key ID: 0D948CE19CF49C5F

View File

@ -145,9 +145,7 @@ in {
};
ui = {
enable = lib.mkEnableOption (lib.mdDoc ''
Enables the (experimental) LXD UI.
'');
enable = lib.mkEnableOption (lib.mdDoc "(experimental) LXD UI");
package = lib.mkPackageOption pkgs.lxd-unwrapped "ui" { };
};