diff options
| author | Greg Pfeil <greg@technomadic.org> | 2022-09-09 11:40:42 -0600 |
|---|---|---|
| committer | Greg Pfeil <greg@technomadic.org> | 2022-09-09 11:40:42 -0600 |
| commit | 7698ffce98b0535de3f1de25a7a3ab1249eef46e (patch) | |
| tree | 9ebf4b99b7be5e268775b65b9c4295d9fcecb758 /modules | |
| parent | cfd60e8c54072a572bd5a805b1d68108b8ee4100 (diff) | |
Remove lib.mdDoc usage
Diffstat (limited to 'modules')
| -rw-r--r-- | modules/services/tailscale.nix | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/modules/services/tailscale.nix b/modules/services/tailscale.nix index ed47309..fb63af9 100644 --- a/modules/services/tailscale.nix +++ b/modules/services/tailscale.nix @@ -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."; }; }; |
