mirror of
https://github.com/nix-community/home-manager.git
synced 2025-11-08 19:46:05 +01:00
11 lines
300 B
Nix
11 lines
300 B
Nix
{
|
|
programs.patdiff = {
|
|
enable = true;
|
|
};
|
|
programs.git.enable = true;
|
|
|
|
nmt.script = ''
|
|
# Git config should NOT contain patdiff configuration since enableGitIntegration is false by default
|
|
assertFileNotRegex home-files/.config/git/config 'external = .*/patdiff-git-wrapper'
|
|
'';
|
|
}
|