mirror of
https://github.com/nix-community/home-manager
synced 2024-11-01 16:59:43 +01:00
17 lines
309 B
Nix
17 lines
309 B
Nix
{ pkgs, ... }:
|
|
|
|
{
|
|
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}
|
|
'';
|
|
};
|
|
}
|