1
0
Fork 0
mirror of https://github.com/nix-community/home-manager synced 2024-10-22 13:07:26 +02:00

pls: fixed perm argument to pass via pls

This commit is contained in:
Nabeen Tiwaree 2024-10-12 05:43:52 -04:00 committed by GitHub
parent 2b13611eae
commit d57112db87
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 4 additions and 4 deletions

View file

@ -9,7 +9,7 @@ let
aliases = { aliases = {
ls = "${cfg.package}/bin/pls"; ls = "${cfg.package}/bin/pls";
ll = ll =
"${cfg.package}/bin/pls -d perms -d user -d group -d size -d mtime -d git"; "${cfg.package}/bin/pls -d perm -d user -d group -d size -d mtime -d git";
}; };
in { in {

View file

@ -23,7 +23,7 @@ with lib;
"alias ls=@pls@/bin/pls" "alias ls=@pls@/bin/pls"
assertFileContains \ assertFileContains \
home-files/.bashrc \ home-files/.bashrc \
"alias ll='@pls@/bin/pls -d perms -d user -d group -d size -d mtime -d git'" "alias ll='@pls@/bin/pls -d perm -d user -d group -d size -d mtime -d git'"
''; '';
}; };
} }

View file

@ -27,7 +27,7 @@ with lib;
"alias ls @pls@/bin/pls" "alias ls @pls@/bin/pls"
assertFileContains \ assertFileContains \
home-files/.config/fish/config.fish \ home-files/.config/fish/config.fish \
"alias ll '@pls@/bin/pls -d perms -d user -d group -d size -d mtime -d git'" "alias ll '@pls@/bin/pls -d perm -d user -d group -d size -d mtime -d git'"
''; '';
}; };
} }

View file

@ -26,7 +26,7 @@ with lib;
"alias -- ls=@pls@/bin/pls" "alias -- ls=@pls@/bin/pls"
assertFileContains \ assertFileContains \
home-files/.zshrc \ home-files/.zshrc \
"alias -- ll='@pls@/bin/pls -d perms -d user -d group -d size -d mtime -d git'" "alias -- ll='@pls@/bin/pls -d perm -d user -d group -d size -d mtime -d git'"
''; '';
}; };
} }