Use eza instead of exa

This commit is contained in:
Natsu Kagami 2023-09-17 15:28:39 +02:00
parent 9bfc27d6b9
commit a25af00bd7
Signed by: nki
GPG key ID: 55A032EB38B49ADB
3 changed files with 249 additions and 50 deletions

View file

@ -30,6 +30,11 @@ let
deploy-rs = inputs.deploy-rs.packages.default;
dtth-phanpy = inputs.dtth-phanpy.packages.${final.system}.default;
matrix-conduit = inputs.conduit.packages.${final.system}.default;
exa = inputs.eza.packages.${final.system}.default.overrideAttrs (attrs: {
postInstall = attrs.postInstall + ''
ln -sv $out/bin/eza $out/bin/exa
'';
});
# A list of source-style inputs.
sources = final.lib.attrsets.filterAttrs (name: f: !(builtins.hasAttr "outputs" f)) inputs;