about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--home/profiles/base/default.nix1
-rw-r--r--lib/mk_home.nix6
2 files changed, 6 insertions, 1 deletions
diff --git a/home/profiles/base/default.nix b/home/profiles/base/default.nix
index 7b62442..4f26819 100644
--- a/home/profiles/base/default.nix
+++ b/home/profiles/base/default.nix
@@ -17,7 +17,6 @@ in
     "The base profile, should be always enabled";
 
   config = lib.mkIf cfg.enable {
-
     home.sessionVariables = rec {
       EDITOR = "nvim";
       VISUAL = "nvim";
diff --git a/lib/mk_home.nix b/lib/mk_home.nix
index 52acc96..24ea7f1 100644
--- a/lib/mk_home.nix
+++ b/lib/mk_home.nix
@@ -16,6 +16,12 @@ home-manager.lib.homeManagerConfiguration {
 
     profiles.base.enable = true;
 
+    manual = {
+      html.enable = false;
+      manpages.enable = false;
+      json.enable = false;
+    };
+
     imports = [
       entrypoint
     ] ++ lib.optionals (extraModules != null) extraModules;