mirror of
https://github.com/Swarsel/.dotfiles.git
synced 2025-12-06 17:17:22 +01:00
chore: add explicit doc options
This commit is contained in:
parent
5c7ae68078
commit
a34dd0dfd7
3 changed files with 28 additions and 3 deletions
|
|
@ -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);
|
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;
|
targets.genericLinux.enable = lib.mkIf (!config.swarselsystems.isNixos) true;
|
||||||
|
|
||||||
home = {
|
home = {
|
||||||
|
|
@ -11020,6 +11027,11 @@ Again, we adapt =nix= to our needs, enable the home-manager command for non-NixO
|
||||||
sessionVariables = {
|
sessionVariables = {
|
||||||
FLAKE = "/home/${mainUser}/.dotfiles";
|
FLAKE = "/home/${mainUser}/.dotfiles";
|
||||||
};
|
};
|
||||||
|
extraOutputsToInstall = [
|
||||||
|
"doc"
|
||||||
|
"info"
|
||||||
|
"devdoc"
|
||||||
|
];
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -42,7 +42,14 @@ in
|
||||||
|
|
||||||
nixpkgs.overlays = lib.mkIf config.swarselsystems.isNixos (lib.mkForce null);
|
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;
|
targets.genericLinux.enable = lib.mkIf (!config.swarselsystems.isNixos) true;
|
||||||
|
|
||||||
home = {
|
home = {
|
||||||
|
|
@ -53,6 +60,11 @@ in
|
||||||
sessionVariables = {
|
sessionVariables = {
|
||||||
FLAKE = "/home/${mainUser}/.dotfiles";
|
FLAKE = "/home/${mainUser}/.dotfiles";
|
||||||
};
|
};
|
||||||
|
extraOutputsToInstall = [
|
||||||
|
"doc"
|
||||||
|
"info"
|
||||||
|
"devdoc"
|
||||||
|
];
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -10,7 +10,8 @@
|
||||||
inputs.nix-index-database.homeModules.nix-index
|
inputs.nix-index-database.homeModules.nix-index
|
||||||
inputs.sops-nix.homeManagerModules.sops
|
inputs.sops-nix.homeManagerModules.sops
|
||||||
inputs.spicetify-nix.homeManagerModules.default
|
inputs.spicetify-nix.homeManagerModules.default
|
||||||
inputs.swarsel-modules.homeModules.default
|
# inputs.swarsel-modules.homeModules.default
|
||||||
|
inputs.swarsel-nix.homeModules.default
|
||||||
{
|
{
|
||||||
imports = [
|
imports = [
|
||||||
"${self}/profiles/home"
|
"${self}/profiles/home"
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue