overlays: Add avizo overlay to fix icon size

Doesn't seem possible to patch binary diffs like this with fetchpatch.
This commit is contained in:
Donovan Glover 2024-09-03 18:45:24 -04:00
parent 956fbce486
commit cf3ef3d59d
No known key found for this signature in database
GPG Key ID: EA7408A77AE1BE65

10
overlays/avizo.nix Normal file
View File

@ -0,0 +1,10 @@
final: prev: {
avizo = prev.avizo.overrideAttrs (oldAttrs: {
src = prev.fetchFromGitHub {
owner = "donovanglover";
repo = "avizo";
rev = "8179e1d650a43065b2775ca9d316aee721c36a44";
hash = "sha256-mWH+fqDD/wB/++0izp820t65zAr+s/kwx5jS2z3B4c0=";
};
});
}