1
0
mirror of https://github.com/nix-community/home-manager synced 2024-07-01 10:58:31 +02:00
home-manager/tests/modules/programs/pls/fish.nix
2022-12-05 23:16:39 +01:00

34 lines
808 B
Nix

{ config, lib, pkgs, ... }:
with lib;
{
config = {
programs = {
fish.enable = true;
pls = {
enable = true;
enableAliases = true;
package = config.lib.test.mkStubPackage { outPath = "@pls@"; };
};
};
# Needed to avoid error with dummy fish package.
xdg.dataFile."fish/home-manager_generated_completions".source =
mkForce (builtins.toFile "empty" "");
test.stubs.pls = { };
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 perms -d user -d group -d size -d mtime -d git'"
'';
};
}