14 lines
385 B
Nix
14 lines
385 B
Nix
{
|
|
programs.git.enable = true;
|
|
programs.mergiraf = {
|
|
enable = true;
|
|
enableGitIntegration = true;
|
|
# Do not warn about default value
|
|
enableJujutsuIntegration = false;
|
|
};
|
|
|
|
nmt.script = ''
|
|
assertFileContent "home-files/.config/git/config" ${./mergiraf-git.conf}
|
|
assertFileContent "home-files/.config/git/attributes" ${./mergiraf-git-attributes.conf}
|
|
'';
|
|
}
|