1
0
Fork 0
mirror of https://github.com/nix-community/home-manager.git synced 2025-03-31 04:04:32 +00:00

fish: Add fish-manpage test

This commit is contained in:
Zhaofeng Li 2025-03-25 09:59:36 -06:00
parent 9657bb1d5c
commit b4a91be489
2 changed files with 13 additions and 0 deletions

View file

@ -4,4 +4,5 @@
fish-functions = ./functions.nix;
fish-no-functions = ./no-functions.nix;
fish-plugins = ./plugins.nix;
fish-manpage = ./manpage.nix;
}

View file

@ -0,0 +1,12 @@
{ lib, pkgs, ... }: {
config = {
programs.fish = { enable = true; };
home.packages = [
(pkgs.runCommand "manpage-with-space" { } ''
mkdir -p $out/share/man/man1
echo "It works!" >"$out/share/man/man1/hello -inject.1"
'')
];
};
}