1
0
Fork 0
mirror of https://github.com/nix-community/home-manager.git synced 2025-12-09 18:41:06 +01:00
home-manager/tests/modules/programs/mergiraf/basic-configuration.nix
Austin Horstman cba2f9ce95 treewide: reformat nixfmt-rfc-style
Reformat repository using new nixfmt-rfc-style.
2025-04-08 08:50:05 -07:00

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}
'';
}