about summary refs log tree commit diff
path: root/nixos/modules/programs
diff options
context:
space:
mode:
authorNaïm Favier <n@monade.li>2022-11-03 15:52:19 +0100
committerpennae <82953136+pennae@users.noreply.github.com>2022-12-08 17:52:52 +0100
commit0ff3b35356b5a57f93b4a7c27ed9ca4c71d388ac (patch)
treeeb1d4c95b800ad646364f67f7d3060da5ff642fe /nixos/modules/programs
parent4cc7973ae61a06bba906672318639da03ee0be44 (diff)
nixos/doc: fix some options
Diffstat (limited to 'nixos/modules/programs')
-rw-r--r--nixos/modules/programs/htop.nix2
-rw-r--r--nixos/modules/programs/weylus.nix2
2 files changed, 2 insertions, 2 deletions
diff --git a/nixos/modules/programs/htop.nix b/nixos/modules/programs/htop.nix
index 521287f9352d5..2682ced490ca3 100644
--- a/nixos/modules/programs/htop.nix
+++ b/nixos/modules/programs/htop.nix
@@ -20,7 +20,7 @@ in
     package = mkOption {
       type = types.package;
       default = pkgs.htop;
-      defaultText = "pkgs.htop";
+      defaultText = lib.literalExpression "pkgs.htop";
       description = lib.mdDoc ''
         The htop package that should be used.
       '';
diff --git a/nixos/modules/programs/weylus.nix b/nixos/modules/programs/weylus.nix
index eab8afdf2cc84..a5775f3b981cc 100644
--- a/nixos/modules/programs/weylus.nix
+++ b/nixos/modules/programs/weylus.nix
@@ -29,7 +29,7 @@ in
     package = mkOption {
       type = package;
       default = pkgs.weylus;
-      defaultText = "pkgs.weylus";
+      defaultText = lib.literalExpression "pkgs.weylus";
       description = lib.mdDoc "Weylus package to install.";
     };
   };