renamed flake modules

This commit is contained in:
Primrose 2024-07-12 23:37:06 +02:00
parent 32eafdd5fe
commit 05c82698bd
Signed by: primrose
GPG key ID: 4E887A4CA9714ADA
4 changed files with 7 additions and 5 deletions

13
nix/resolve/patches.nix Normal file
View file

@ -0,0 +1,13 @@
_: prev: {
# https://github.com/tmux/tmux/issues/3983
# fix tmux crashing when neovim is used in a nested session
tmux = prev.tmux.overrideAttrs (oa: {
patches = (oa.patches or [ ]) ++ [
(prev.fetchpatch {
name = "sixel-patch";
url = "https://github.com/tmux/tmux/commit/aa17f0e0c1c8b3f1d6fc8617613c74f07de66fae.patch";
hash = "sha256-jhWGnC9tsGqTTA5tU+i4G3wlwZ7HGz4P0UHl17dVRU4=";
})
];
});
}