mirror of
https://github.com/nix-community/home-manager.git
synced 2025-11-08 19:46:05 +01:00
13 lines
392 B
Nix
13 lines
392 B
Nix
{
|
|
programs.riff = {
|
|
enable = true;
|
|
commandLineOptions = [ "--no-adds-only-special" ];
|
|
};
|
|
programs.git.enable = true;
|
|
|
|
nmt.script = ''
|
|
# Git config should NOT contain riff configuration since enableGitIntegration is false by default
|
|
assertFileNotRegex home-files/.config/git/config '\[pager\]'
|
|
assertFileNotRegex home-files/.config/git/config 'diff = riff'
|
|
'';
|
|
}
|