mirror of
https://github.com/nix-community/home-manager.git
synced 2025-12-09 18:41:06 +01:00
11 lines
286 B
Nix
11 lines
286 B
Nix
{ config, lib, ... }:
|
|
|
|
{
|
|
programs.git.enable = true;
|
|
programs.mergiraf.enable = true;
|
|
|
|
nmt.script = ''
|
|
assertFileContent "home-files/.config/git/config" ${./mergiraf-git.conf}
|
|
assertFileContent "home-files/.config/git/attributes" ${./mergiraf-git-attributes.conf}
|
|
'';
|
|
}
|