1
0
Fork 0
mirror of https://github.com/nix-community/home-manager.git synced 2025-11-21 17:59:39 +01:00
home-manager/tests/modules/programs/darcs/boring.nix
2025-05-07 10:03:21 -05:00

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