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