summary refs log tree commit diff
path: root/nixos/modules/services/web-servers/phpfpm/default.nix
diff options
context:
space:
mode:
authorpennae <github@quasiparticle.net>2022-08-30 02:30:04 +0200
committerpennae <github@quasiparticle.net>2022-08-31 16:36:16 +0200
commit722b99bc0eb57711c0498a86a3f55e6c69cdb05f (patch)
treef5841c8c329a23a3268556efadccf17423519e37 /nixos/modules/services/web-servers/phpfpm/default.nix
parentbd5636884879a6ef672703dd51f3e398a58c3b8e (diff)
downloadnixpkgs-722b99bc0eb57711c0498a86a3f55e6c69cdb05f.tar
nixpkgs-722b99bc0eb57711c0498a86a3f55e6c69cdb05f.tar.gz
nixpkgs-722b99bc0eb57711c0498a86a3f55e6c69cdb05f.tar.bz2
nixpkgs-722b99bc0eb57711c0498a86a3f55e6c69cdb05f.tar.lz
nixpkgs-722b99bc0eb57711c0498a86a3f55e6c69cdb05f.tar.xz
nixpkgs-722b99bc0eb57711c0498a86a3f55e6c69cdb05f.tar.zst
nixpkgs-722b99bc0eb57711c0498a86a3f55e6c69cdb05f.zip
nixos/*: convert options with admonitions to MD
rendering changes only slightly, most changes are in spacing.
Diffstat (limited to 'nixos/modules/services/web-servers/phpfpm/default.nix')
-rw-r--r--nixos/modules/services/web-servers/phpfpm/default.nix7
1 files changed, 5 insertions, 2 deletions
diff --git a/nixos/modules/services/web-servers/phpfpm/default.nix b/nixos/modules/services/web-servers/phpfpm/default.nix
index e24c77d056a..0bd1d5b29b3 100644
--- a/nixos/modules/services/web-servers/phpfpm/default.nix
+++ b/nixos/modules/services/web-servers/phpfpm/default.nix
@@ -40,9 +40,12 @@ let
         socket = mkOption {
           type = types.str;
           readOnly = true;
-          description = ''
+          description = lib.mdDoc ''
             Path to the unix socket file on which to accept FastCGI requests.
-            <note><para>This option is read-only and managed by NixOS.</para></note>
+
+            ::: {.note}
+            This option is read-only and managed by NixOS.
+            :::
           '';
           example = "${runtimeDir}/<name>.sock";
         };