summary refs log tree commit diff
diff options
context:
space:
mode:
authorpennae <github@quasiparticle.net>2023-01-18 01:43:37 +0100
committerpennae <82953136+pennae@users.noreply.github.com>2023-01-22 17:50:09 +0100
commitcf792cfde3dd2b98041fb8d9480364a765d3ad92 (patch)
tree45078fff868fd18c70fe5e3845bcb4f1a5dc76a5
parent85c34d334bac9711c4a9a220308b0703cf1c5bb8 (diff)
downloadnixpkgs-cf792cfde3dd2b98041fb8d9480364a765d3ad92.tar
nixpkgs-cf792cfde3dd2b98041fb8d9480364a765d3ad92.tar.gz
nixpkgs-cf792cfde3dd2b98041fb8d9480364a765d3ad92.tar.bz2
nixpkgs-cf792cfde3dd2b98041fb8d9480364a765d3ad92.tar.lz
nixpkgs-cf792cfde3dd2b98041fb8d9480364a765d3ad92.tar.xz
nixpkgs-cf792cfde3dd2b98041fb8d9480364a765d3ad92.tar.zst
nixpkgs-cf792cfde3dd2b98041fb8d9480364a765d3ad92.zip
nixos/envfs: fix envfs package option default
mdDoc is not valid here, but isn't currently rejected for xslt reasons.
-rw-r--r--nixos/modules/tasks/filesystems/envfs.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/nixos/modules/tasks/filesystems/envfs.nix b/nixos/modules/tasks/filesystems/envfs.nix
index ef8f655c532..450b805f0f5 100644
--- a/nixos/modules/tasks/filesystems/envfs.nix
+++ b/nixos/modules/tasks/filesystems/envfs.nix
@@ -35,7 +35,7 @@ in {
         type = lib.types.package;
         description = lib.mdDoc "Which package to use for the envfs.";
         default = pkgs.envfs;
-        defaultText = lib.mdDoc "pkgs.envfs";
+        defaultText = lib.literalExpression "pkgs.envfs";
       };
     };
   };