home/exa: update exa package

This commit is contained in:
Dmitriy Pleshevskiy 2022-09-20 08:48:58 +03:00
parent 6c39586169
commit 314d9afd5c
Signed by: pleshevskiy
GPG key ID: 1B59187B161C0215
3 changed files with 1 additions and 7 deletions

View file

@ -6,7 +6,7 @@ let
cfg = config.progs.exa; cfg = config.progs.exa;
zsh = config.shell.zsh; zsh = config.shell.zsh;
exaPackage = pkgs.exa-minimal; exaPackage = pkgs.exa.override { gitSupport = false; };
defaultArgs = "--icons --classify"; defaultArgs = "--icons --classify";
bin = "${exaPackage}/bin/exa ${defaultArgs}"; bin = "${exaPackage}/bin/exa ${defaultArgs}";
in in

View file

@ -1,5 +1,4 @@
[ [
(import ./himalaya.nix) (import ./himalaya.nix)
(import ./pass.nix) (import ./pass.nix)
(import ./exa.nix)
] ]

View file

@ -1,5 +0,0 @@
final: prev: {
exa-minimal = prev.exa.overrideAttrs (oldAttrs: {
cargoBuildNoDefaultFeatures = true;
});
}