2025-01-31 21:24:47 +01:00
|
|
|
{ config, ... }:
|
2022-09-30 18:53:39 +02:00
|
|
|
|
|
|
|
{
|
2025-01-31 21:24:47 +01:00
|
|
|
programs = {
|
|
|
|
zsh.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
|
|
|
|
|
|
|
nmt.script = ''
|
|
|
|
assertFileExists home-files/.zshrc
|
|
|
|
assertFileContains \
|
|
|
|
home-files/.zshrc \
|
|
|
|
"alias -- ls=@pls@/bin/pls"
|
|
|
|
assertFileContains \
|
|
|
|
home-files/.zshrc \
|
|
|
|
"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
|
|
|
}
|