trying to bump foot version to latest, because it fixes repeated keys on nvim

This commit is contained in:
chloe 2025-03-03 08:41:38 +01:00
parent 4d7601861d
commit 1251054fd6
4 changed files with 138 additions and 91 deletions

19
overlays/foot-overlay.nix Normal file
View file

@ -0,0 +1,19 @@
{ config, lib, pkgs, ... }:
{
let foot-next = pkgs.foot.overrideAttrs (oldAttrs: rec {
inherit (oldAttrs) name;
version = "1.20.2";
src = pkgs.fetchFromGitea {
domain = "codeberg.org";
owner = "dnkl";
repo = "foot";
rev = version;
hash = "sha256-tnBoRRKHcuvBSnqvJ/772UWuepvpUiSg6t+gx4MZ0VQ=";
};
}) in
nixpkgs.overlays = [(
final: previous: {
foot = foot-next;
}
)];
}