1
0
mirror of https://github.com/nix-community/home-manager synced 2024-07-09 14:48:43 +02:00
home-manager/tests/modules/programs/darcs/boring.nix

15 lines
246 B
Nix
Raw Normal View History

2023-03-27 20:25:17 +02:00
{ pkgs, ... }:
{
config = {
programs.darcs = {
enable = true;
boring = [ "^.idea$" ".iml$" "^.stack-work$" ];
};
nmt.script = ''
assertFileContent home-files/.darcs/boring ${./boring-expected.txt}
'';
};
}