meta: Drop eza overlay

The CJK + icons bug seems to be fixed in newer versions of eza.
This commit is contained in:
Donovan Glover 2024-03-25 11:55:09 -04:00
parent a169b39f8c
commit dd862ac7aa
No known key found for this signature in database
GPG Key ID: EA7408A77AE1BE65
2 changed files with 0 additions and 23 deletions

View File

@ -1,7 +1,6 @@
{
imports = [
./base16-schemes.nix
./eza.nix
./hyprland.nix
./kitty.nix
./srb2.nix

View File

@ -1,22 +0,0 @@
{
nixpkgs.overlays = [
(final: prev: {
eza = prev.eza.overrideAttrs (oldAttrs: rec {
version = "0.14.2";
src = prev.fetchFromGitHub {
owner = "eza-community";
repo = "eza";
rev = "v${version}";
hash = "sha256-eST70KMdGgbTo4FNL3K5YGn9lwIGroG4y4ExKDb30hU=";
};
cargoDeps = oldAttrs.cargoDeps.overrideAttrs (prev.lib.const {
name = "eza-vendor.tar.gz";
inherit src;
outputHash = "sha256-bF4Thh/KUOLQz4MmM0WqQmXXT8dsLjy9ngy1UN5ACk8=";
});
});
})
];
}