1
0
forked from extern/nix-config
donovanglover-nix-config/terminal/tig/default.nix
2023-05-18 15:54:15 -04:00

14 lines
271 B
Nix

{ pkgs, ... }:
{
environment.systemPackages = [ pkgs.tig ];
home-manager.sharedModules = [{
xdg.configFile."tig/config".text = ''
color cursor black green bold
color title-focus black blue bold
color title-blur black blue bold
'';
}];
}