chore: add explicit doc options

This commit is contained in:
Leon Schwarzäugl 2025-10-11 23:20:09 +02:00
parent 5c7ae68078
commit a34dd0dfd7
Signed by: swarsel
GPG key ID: 26A54C31F2A4FD84
3 changed files with 28 additions and 3 deletions

View file

@ -11009,7 +11009,14 @@ Again, we adapt =nix= to our needs, enable the home-manager command for non-NixO
nixpkgs.overlays = lib.mkIf config.swarselsystems.isNixos (lib.mkForce null);
programs.home-manager.enable = lib.mkIf (!config.swarselsystems.isNixos) true;
programs = {
home-manager.enable = lib.mkIf (!config.swarselsystems.isNixos) true;
man = {
enable = true;
generateCaches = true;
};
};
targets.genericLinux.enable = lib.mkIf (!config.swarselsystems.isNixos) true;
home = {
@ -11020,6 +11027,11 @@ Again, we adapt =nix= to our needs, enable the home-manager command for non-NixO
sessionVariables = {
FLAKE = "/home/${mainUser}/.dotfiles";
};
extraOutputsToInstall = [
"doc"
"info"
"devdoc"
];
};
};