summaryrefslogtreecommitdiff
path: root/modules/shared/base/documentation.nix
diff options
context:
space:
mode:
authorseth <[email protected]>2024-06-30 11:01:14 -0400
committerseth <[email protected]>2024-06-30 11:23:48 -0400
commit47e10205ba325e668324685b9700d897ffaf2869 (patch)
tree3af73179c7ac9ff8e9cee69f6706df5137b30743 /modules/shared/base/documentation.nix
parentd0d4481488d5c275db25b4d3d28e72b6ea47248e (diff)
modules/base: streamline
Diffstat (limited to 'modules/shared/base/documentation.nix')
-rw-r--r--modules/shared/base/documentation.nix19
1 files changed, 0 insertions, 19 deletions
diff --git a/modules/shared/base/documentation.nix b/modules/shared/base/documentation.nix
deleted file mode 100644
index 1335c17..0000000
--- a/modules/shared/base/documentation.nix
+++ /dev/null
@@ -1,19 +0,0 @@
-{ config, lib, ... }:
-let
- cfg = config.base.documentation;
- enable = config.base.enable && cfg.enable;
-in
-{
- options.base.documentation = {
- enable = lib.mkEnableOption "documentation settings" // {
- default = true;
- };
- };
-
- config = lib.mkIf enable {
- documentation = {
- doc.enable = false;
- info.enable = false;
- };
- };
-}