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

@ -4,6 +4,9 @@
username,
self,
}:
let
pkgsUnstable = inputs.nixpkgs-unstable.legacyPackages.${pkgs.system};
in
{
home.username = "${username}";
home.homeDirectory = "/home/${username}";
@ -13,13 +16,13 @@
programs.home-manager.enable = true;
imports = [
(import ./modules/git.nix { inherit inputs pkgs pkgsUnstable; })
(import ./modules/neovim.nix { inherit inputs; })
./modules/atuin.nix
./modules/bat.nix
./modules/bin.nix
./modules/direnv.nix
./modules/fzf.nix
./modules/git.nix
./modules/lsd.nix
./modules/nnn.nix
./modules/phpactor.nix

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 ];
}