mirror of
https://github.com/nix-community/home-manager.git
synced 2025-03-31 04:04:32 +00:00
14 lines
298 B
Nix
14 lines
298 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
|
||
|
}
|
||
|
'';
|
||
|
}
|