about summary refs log tree commit diff
path: root/nixos
diff options
context:
space:
mode:
authorJoel <joel@joel.tokyo>2022-12-18 16:17:14 +1000
committerJoel <joel@joel.tokyo>2022-12-30 20:54:06 +1000
commit1cee5ecfebfa99b99fcbf43e2dc1432a2e81b908 (patch)
tree18937398f36adb1cd6d740011626af30bd40a5c5 /nixos
parentbe5e767930fe85d91823aa3d5d53c8f8939f1365 (diff)
downloadnixlib-1cee5ecfebfa99b99fcbf43e2dc1432a2e81b908.tar
nixlib-1cee5ecfebfa99b99fcbf43e2dc1432a2e81b908.tar.gz
nixlib-1cee5ecfebfa99b99fcbf43e2dc1432a2e81b908.tar.bz2
nixlib-1cee5ecfebfa99b99fcbf43e2dc1432a2e81b908.tar.lz
nixlib-1cee5ecfebfa99b99fcbf43e2dc1432a2e81b908.tar.xz
nixlib-1cee5ecfebfa99b99fcbf43e2dc1432a2e81b908.tar.zst
nixlib-1cee5ecfebfa99b99fcbf43e2dc1432a2e81b908.zip
nixos/cloudflared: fix invalid systemd unit description
Diffstat (limited to 'nixos')
-rw-r--r--nixos/modules/services/networking/cloudflared.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/nixos/modules/services/networking/cloudflared.nix b/nixos/modules/services/networking/cloudflared.nix
index c8fc9fafee6d..747dbc6e8bbe 100644
--- a/nixos/modules/services/networking/cloudflared.nix
+++ b/nixos/modules/services/networking/cloudflared.nix
@@ -263,7 +263,7 @@ in
       mapAttrs'
         (name: tunnel:
           nameValuePair "cloudflared-tunnel-${name}" ({
-            description = lib.mdDoc "Cloudflare tunnel '${name}' target";
+            description = "Cloudflare tunnel '${name}' target";
             requires = [ "cloudflared-tunnel-${name}.service" ];
             after = [ "cloudflared-tunnel-${name}.service" ];
             unitConfig.StopWhenUnneeded = true;