summaryrefslogtreecommitdiffstats
path: root/nixos/modules/hardware/ksm.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixos/modules/hardware/ksm.nix')
-rw-r--r--nixos/modules/hardware/ksm.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/nixos/modules/hardware/ksm.nix b/nixos/modules/hardware/ksm.nix
index d3b2ae37f41b..e0b5949ffb21 100644
--- a/nixos/modules/hardware/ksm.nix
+++ b/nixos/modules/hardware/ksm.nix
@@ -11,11 +11,11 @@ in {
];
options.hardware.ksm = {
- enable = mkEnableOption (lib.mdDoc "Linux kernel Same-Page Merging");
+ enable = mkEnableOption "Linux kernel Same-Page Merging";
sleep = mkOption {
type = types.nullOr types.int;
default = null;
- description = lib.mdDoc ''
+ description = ''
How many milliseconds ksmd should sleep between scans.
Setting it to `null` uses the kernel's default time.
'';