feat(apps): add "ida" and enable documentation in NixOS config

This commit is contained in:
uttarayan21
2025-12-06 21:41:50 +05:30
parent 24fab1402b
commit b25638eb9f
4 changed files with 19 additions and 0 deletions

View File

@@ -31,6 +31,7 @@
./${device.name}/configuration.nix
../home/module.nix
./documentation.nix
{nixpkgs.overlays = overlays;}
../sops.nix
../stylix.nix

7
nixos/documentation.nix Normal file
View File

@@ -0,0 +1,7 @@
{...}: {
documentation.enable = true;
documentation.man.enable = true;
documentation.dev.enable = true;
documentation.doc.enable = true;
documentation.nixos.enable = true;
}