summaryrefslogtreecommitdiff
path: root/modules/services/nix-optimise
diff options
context:
space:
mode:
authorWeijia Wang <9713184+wegank@users.noreply.github.com>2024-04-14 23:02:32 +0200
committerWeijia Wang <9713184+wegank@users.noreply.github.com>2024-04-19 04:05:50 +0200
commitdef1e23be848848400d1d097d4f044e3c401f9dd (patch)
tree7a69686dea36e304c788531fda90bc3edeee86fd /modules/services/nix-optimise
parent99b3f9a1f5d2604d542f367d38001dfa40eea7b9 (diff)
treewide: remove lib.mdDoc
Diffstat (limited to 'modules/services/nix-optimise')
-rw-r--r--modules/services/nix-optimise/default.nix7
1 files changed, 3 insertions, 4 deletions
diff --git a/modules/services/nix-optimise/default.nix b/modules/services/nix-optimise/default.nix
index 5462bae..94f6e1c 100644
--- a/modules/services/nix-optimise/default.nix
+++ b/modules/services/nix-optimise/default.nix
@@ -6,7 +6,6 @@
let
inherit (lib)
- mdDoc
mkIf
mkOption
mkRemovedOptionModule
@@ -31,20 +30,20 @@ in
automatic = mkOption {
type = types.bool;
default = false;
- description = mdDoc "Automatically run the nix store optimiser at a specific time.";
+ description = "Automatically run the nix store optimiser at a specific time.";
};
# Not in NixOS module
user = mkOption {
type = types.nullOr types.str;
default = null;
- description = mdDoc "User that runs the store optimisation.";
+ description = "User that runs the store optimisation.";
};
interval = mkOption {
type = types.attrs;
default = { Hour = 3; Minute = 15; };
- description = mdDoc "The time interval at which the optimiser will run.";
+ description = "The time interval at which the optimiser will run.";
};
};