Update git-instafix to 0.2.7

v0.2.6 contained fixes for trunk-based development workflows that don't
require being on a separate branch.

https://github.com/quodlibetor/git-instafix/releases/tag/v0.2.6
This commit is contained in:
Oliver Davies 2024-07-06 01:38:44 +01:00
parent aaf069593d
commit 53b8745b34
2 changed files with 6 additions and 3 deletions

View file

@ -1,4 +1,4 @@
{ pkgs, ... }:
{ pkgs, pkgsUnstable, ... }:
{
home.file.".gitmessage".text = ''
@ -140,5 +140,5 @@
};
};
home.packages = with pkgs; [ git-instafix ];
home.packages = with pkgsUnstable; [ git-instafix ];
}