mirror of
https://github.com/nix-community/home-manager.git
synced 2025-11-21 17:59:39 +01:00
16 lines
260 B
Nix
16 lines
260 B
Nix
{
|
|
config = {
|
|
programs.darcs = {
|
|
enable = true;
|
|
boring = [
|
|
"^.idea$"
|
|
".iml$"
|
|
"^.stack-work$"
|
|
];
|
|
};
|
|
|
|
nmt.script = ''
|
|
assertFileContent home-files/.darcs/boring ${./boring-expected.txt}
|
|
'';
|
|
};
|
|
}
|