2022-09-30 18:53:39 +02:00
|
|
|
{ config, lib, pkgs, ... }:
|
|
|
|
|
|
|
|
with lib;
|
|
|
|
|
|
|
|
{
|
|
|
|
config = {
|
|
|
|
programs = {
|
|
|
|
zsh.enable = true;
|
|
|
|
|
|
|
|
pls = {
|
|
|
|
enable = true;
|
|
|
|
enableAliases = true;
|
|
|
|
package = config.lib.test.mkStubPackage { outPath = "@pls@"; };
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
test.stubs = {
|
|
|
|
pls = { };
|
|
|
|
zsh = { };
|
|
|
|
};
|
|
|
|
|
|
|
|
nmt.script = ''
|
|
|
|
assertFileExists home-files/.zshrc
|
|
|
|
assertFileContains \
|
|
|
|
home-files/.zshrc \
|
2024-02-22 17:55:26 +01:00
|
|
|
"alias -- 'ls'='@pls@/bin/pls'"
|
2022-09-30 18:53:39 +02:00
|
|
|
assertFileContains \
|
|
|
|
home-files/.zshrc \
|
2024-02-22 17:55:26 +01:00
|
|
|
"alias -- 'll'='@pls@/bin/pls -d perms -d user -d group -d size -d mtime -d git'"
|
2022-09-30 18:53:39 +02:00
|
|
|
'';
|
|
|
|
};
|
|
|
|
}
|