summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMinijackson <minijackson@riseup.net>2023-10-09 19:03:32 +0200
committerMinijackson <minijackson@riseup.net>2023-10-09 19:03:32 +0200
commit132e8845fcff2f691c3bba5ed82d0d96ccbabbd0 (patch)
tree1e60801e011a41d3ab38bc3711a85fd10489fee9
parentc65360c5f7a7f6753e5d8689b77515610c916949 (diff)
downloadnixos-config-reborn-132e8845fcff2f691c3bba5ed82d0d96ccbabbd0.tar.gz
nixos-config-reborn-132e8845fcff2f691c3bba5ed82d0d96ccbabbd0.zip
common/git: use gix from unstable
-rw-r--r--common/commandline/git.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/common/commandline/git.nix b/common/commandline/git.nix
index 00b8de8..b5bae47 100644
--- a/common/commandline/git.nix
+++ b/common/commandline/git.nix
@@ -4,7 +4,7 @@ inputs:
4 4
5{ 5{
6 environment = { 6 environment = {
7 systemPackages = with pkgs; [unstable.git-branchless gitoxide watchman]; 7 systemPackages = with pkgs; [unstable.git-branchless unstable.gitoxide watchman];
8 shellAliases.git = "git-branchless wrap --"; 8 shellAliases.git = "git-branchless wrap --";
9 }; 9 };
10 10