mirror of
https://github.com/nix-community/home-manager.git
synced 2025-11-08 11:36:05 +01:00
15 lines
293 B
Nix
15 lines
293 B
Nix
{
|
|
config = {
|
|
programs.darcs = {
|
|
enable = true;
|
|
author = [
|
|
"Real Person <personal@example.com>"
|
|
"Real Person <corporate@example.com>"
|
|
];
|
|
};
|
|
|
|
nmt.script = ''
|
|
assertFileContent home-files/.darcs/author ${./author-expected.txt}
|
|
'';
|
|
};
|
|
}
|