about summary refs log tree commit diff stats
path: root/modules/system/documentation
diff options
context:
space:
mode:
Diffstat (limited to 'modules/system/documentation')
-rw-r--r--modules/system/documentation/default.nix25
1 files changed, 0 insertions, 25 deletions
diff --git a/modules/system/documentation/default.nix b/modules/system/documentation/default.nix
deleted file mode 100644
index 4616a991..00000000
--- a/modules/system/documentation/default.nix
+++ /dev/null
@@ -1,25 +0,0 @@
-{
-  config,
-  lib,
-  ...
-}: let
-  cfg = config.soispha.documentation;
-in {
-  options.soispha.documentation = {
-    enable = lib.mkEnableOption "documentation";
-  };
-  config = lib.mkIf cfg.enable {
-    documentation = {
-      nixos = {
-        # FIXME: This results in a evaluation failure (with lanzaboote options) <2024-05-23>
-        includeAllModules = false;
-
-        enable = true;
-      };
-      dev = {
-        # Add man pages aimed at developers (I guess c library stuff, and the like)
-        enable = true;
-      };
-    };
-  };
-}