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:
parent
9657bb1d5c
commit
b4a91be489
2 changed files with 13 additions and 0 deletions
|
@ -4,4 +4,5 @@
|
|||
fish-functions = ./functions.nix;
|
||||
fish-no-functions = ./no-functions.nix;
|
||||
fish-plugins = ./plugins.nix;
|
||||
fish-manpage = ./manpage.nix;
|
||||
}
|
||||
|
|
12
tests/modules/programs/fish/manpage.nix
Normal file
12
tests/modules/programs/fish/manpage.nix
Normal 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"
|
||||
'')
|
||||
];
|
||||
};
|
||||
}
|
Loading…
Add table
Reference in a new issue