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:
parent
cfd60e8c54
commit
7698ffce98
1 changed files with 4 additions and 4 deletions
|
@ -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.";
|
||||
};
|
||||
};
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue