tests/dircolors: test zsh path

This commit is contained in:
Austin Horstman 2025-02-22 13:16:58 -06:00
parent 89b8934055
commit 546949fea1

View file

@ -1,5 +1,7 @@
{
{ pkgs, ... }: {
config = {
programs.zsh.enable = true;
programs.dircolors = {
enable = true;
@ -18,6 +20,11 @@
assertFileContent \
home-files/.dir_colors \
${./settings-expected.conf}
assertFileRegex \
home-files/.zshrc \
"eval \$(${pkgs.coreutils}/bin/dircolors -b ~/.dir_colors)"
'';
};
}