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:
parent
aaf069593d
commit
53b8745b34
|
@ -4,6 +4,9 @@
|
||||||
username,
|
username,
|
||||||
self,
|
self,
|
||||||
}:
|
}:
|
||||||
|
let
|
||||||
|
pkgsUnstable = inputs.nixpkgs-unstable.legacyPackages.${pkgs.system};
|
||||||
|
in
|
||||||
{
|
{
|
||||||
home.username = "${username}";
|
home.username = "${username}";
|
||||||
home.homeDirectory = "/home/${username}";
|
home.homeDirectory = "/home/${username}";
|
||||||
|
@ -13,13 +16,13 @@
|
||||||
programs.home-manager.enable = true;
|
programs.home-manager.enable = true;
|
||||||
|
|
||||||
imports = [
|
imports = [
|
||||||
|
(import ./modules/git.nix { inherit inputs pkgs pkgsUnstable; })
|
||||||
(import ./modules/neovim.nix { inherit inputs; })
|
(import ./modules/neovim.nix { inherit inputs; })
|
||||||
./modules/atuin.nix
|
./modules/atuin.nix
|
||||||
./modules/bat.nix
|
./modules/bat.nix
|
||||||
./modules/bin.nix
|
./modules/bin.nix
|
||||||
./modules/direnv.nix
|
./modules/direnv.nix
|
||||||
./modules/fzf.nix
|
./modules/fzf.nix
|
||||||
./modules/git.nix
|
|
||||||
./modules/lsd.nix
|
./modules/lsd.nix
|
||||||
./modules/nnn.nix
|
./modules/nnn.nix
|
||||||
./modules/phpactor.nix
|
./modules/phpactor.nix
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
{ pkgs, ... }:
|
{ pkgs, pkgsUnstable, ... }:
|
||||||
|
|
||||||
{
|
{
|
||||||
home.file.".gitmessage".text = ''
|
home.file.".gitmessage".text = ''
|
||||||
|
@ -140,5 +140,5 @@
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
home.packages = with pkgs; [ git-instafix ];
|
home.packages = with pkgsUnstable; [ git-instafix ];
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue