2025-01-31 21:24:47 +01:00
|
|
|
{ config, lib, ... }:
|
2022-09-30 18:53:39 +02:00
|
|
|
|
|
|
|
{
|
2025-01-31 21:24:47 +01:00
|
|
|
programs = {
|
|
|
|
fish.enable = true;
|
2022-09-30 18:53:39 +02:00
|
|
|
|
2025-01-31 21:24:47 +01:00
|
|
|
pls = {
|
|
|
|
enable = true;
|
|
|
|
enableAliases = true;
|
|
|
|
package = config.lib.test.mkStubPackage { outPath = "@pls@"; };
|
2022-09-30 18:53:39 +02:00
|
|
|
};
|
2025-01-31 21:24:47 +01:00
|
|
|
};
|
2022-09-30 18:53:39 +02:00
|
|
|
|
2025-01-31 21:24:47 +01: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
|
|
|
|
2025-01-31 21:24:47 +01: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
|
|
|
}
|