1
0
Fork 0
mirror of https://github.com/nix-community/home-manager.git synced 2025-03-10 02:36:54 +00:00
home-manager/tests/modules/programs/pls/fish.nix

28 lines
707 B
Nix
Raw Normal View History

{ config, lib, ... }:
2022-09-30 18:53:39 +02:00
{
programs = {
fish.enable = true;
2022-09-30 18:53:39 +02:00
pls = {
enable = true;
enableAliases = true;
package = config.lib.test.mkStubPackage { outPath = "@pls@"; };
2022-09-30 18:53:39 +02:00
};
};
2022-09-30 18:53:39 +02:00
# Needed to avoid error with dummy fish package.
xdg.dataFile."fish/home-manager_generated_completions".source =
lib.mkForce (builtins.toFile "empty" "");
2022-09-30 18:53:39 +02:00
nmt.script = ''
assertFileExists home-files/.config/fish/config.fish
assertFileContains \
home-files/.config/fish/config.fish \
"alias ls @pls@/bin/pls"
assertFileContains \
home-files/.config/fish/config.fish \
"alias ll '@pls@/bin/pls -d perm -d user -d group -d size -d mtime -d git'"
'';
2022-09-30 18:53:39 +02:00
}