nix-config/home-manager/tig/default.nix
Donovan Glover 9c64fffdc8
Combine system configuration with home-manager
This works well since I am not interested in different users on the same
machine having different state, and keeps all the relevant configuration
for specific programs in one file.
2023-05-17 08:44: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
'';
}];
}