1
0
Fork 0
mirror of https://github.com/LnL7/nix-darwin.git synced 2025-03-13 20:30:02 +00:00

Remove lib.mdDoc usage

This commit is contained in:
Greg Pfeil 2022-09-09 11:40:42 -06:00
parent cfd60e8c54
commit 7698ffce98

View file

@ -11,20 +11,20 @@ in
domain = mkOption {
type = types.str;
default = "";
description = lib.mdDoc "The Tailscale domain. This is displayed at the top left of https://login.tailscale.com/admin, next to the Tailscale logo.";
description = "The Tailscale domain. This is displayed at the top left of https://login.tailscale.com/admin, next to the Tailscale logo.";
};
enable = mkEnableOption (lib.mdDoc "Tailscale client daemon");
enable = mkEnableOption "Tailscale client daemon";
package = mkOption {
type = types.package;
default = pkgs.tailscale;
defaultText = literalExpression "pkgs.tailscale";
description = lib.mdDoc "The package to use for tailscale";
description = "The package to use for tailscale";
};
magicDNS = {
enable = mkEnableOption (lib.mdDoc "Whether to configure networking to work with Tailscale's MagicDNS.");
enable = mkEnableOption "Whether to configure networking to work with Tailscale's MagicDNS.";
};
};