summaryrefslogtreecommitdiffstats
path: root/common/commandline/git.nix
diff options
context:
space:
mode:
Diffstat (limited to 'common/commandline/git.nix')
-rw-r--r--common/commandline/git.nix7
1 files changed, 4 insertions, 3 deletions
diff --git a/common/commandline/git.nix b/common/commandline/git.nix
index fb9bed2..7c387c2 100644
--- a/common/commandline/git.nix
+++ b/common/commandline/git.nix
@@ -3,9 +3,10 @@ inputs:
3{ config, pkgs, lib, ... }: 3{ config, pkgs, lib, ... }:
4 4
5{ 5{
6 users.users.minijackson.packages = [pkgs.git-branchless]; 6 environment = {
7 7 systemPackages = [pkgs.git-branchless];
8 environment.shellAliases.git = "git-branchless wrap --"; 8 shellAliases.git = "git-branchless wrap --";
9 };
9 10
10 programs.zsh.interactiveShellInit = '' 11 programs.zsh.interactiveShellInit = ''
11 source ${../../dotfiles/git-branchless.zsh} 12 source ${../../dotfiles/git-branchless.zsh}