mirror of
https://github.com/tomasriveral/nixos.git
synced 2026-08-12 10:30:44 +02:00
18 lines
509 B
Nix
18 lines
509 B
Nix
{
|
|
pkgs,
|
|
...
|
|
}:
|
|
{
|
|
documentation.man.generateCaches = true; # used for the man script
|
|
|
|
environment.pathsToLink = [ # see https://wiki.nixos.org/wiki/Documentation_Gaps#How_do_manpages_work?_Or:_environment.pathsToLink_and_buildEnv
|
|
"/share/applications"
|
|
"/share/xdg-desktop-portal"
|
|
];
|
|
environment.systemPackages = [
|
|
pkgs.manix
|
|
(pkgs.callPackage ../../modules/scripts/manix.nix {}) # fzf manix searcher
|
|
(pkgs.callPackage ../../modules/scripts/man.nix {}) # fzf man searcher
|
|
];
|
|
}
|