add: diffnav, gh-dash, lazygit, k9s overrides

these are all overlays that were part of my nix config before i created
my nur. i am putting them here to reduce build time when building my nix
config
This commit is contained in:
2026-09-03 13:32:14 -04:00
parent 1b5df8dea8
commit 887845a8f7
8 changed files with 226 additions and 1 deletions
+16
View File
@@ -0,0 +1,16 @@
final: prev: {
k9sLatest = prev.k9s.overrideAttrs (oldAttrs: rec {
version = "0.51.0";
src = prev.fetchFromGitHub {
owner = "derailed";
repo = "k9s";
rev = "v${version}";
hash = "sha256-1z6r6v3n1p6vd2q6n4pl5q3f7q3q7q1p7j5j1k3l4m5n6o7p8q9r";
};
ldflags = [
"-X github.com/derailed/k9s/version.Version=${version}"
"-X github.com/derailed/k9s/version.BuildSource=nix"
];
});
}