mirror of
https://github.com/donovanglover/nix-config.git
synced 2025-02-25 22:22:05 +01:00
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.
14 lines
271 B
Nix
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
|
|
'';
|
|
}];
|
|
}
|