2.home-manager/tests/modules/programs/pls/bash.nix

20 lines
413 B
Nix

{
programs = {
bash.enable = true;
pls = {
enable = true;
enableBashIntegration = true;
};
};
nmt.script = ''
assertFileExists home-files/.bashrc
assertFileContains \
home-files/.bashrc \
"alias -- ls=@pls@/bin/pls"
assertFileContains \
home-files/.bashrc \
"alias -- ll='@pls@/bin/pls -d perm -d user -d group -d size -d mtime -d git'"
'';
}