mirror of
https://github.com/harryssecret/homelab-nix.git
synced 2025-08-09 23:20:18 +02:00
trying to bump foot version to latest, because it fixes repeated keys on nvim
This commit is contained in:
parent
4d7601861d
commit
1251054fd6
4 changed files with 138 additions and 91 deletions
19
overlays/foot-overlay.nix
Normal file
19
overlays/foot-overlay.nix
Normal 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;
|
||||
}
|
||||
)];
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue