1
0
Fork 0
mirror of https://github.com/nix-community/home-manager.git synced 2025-03-09 18:26:54 +00:00
home-manager/tests/modules/programs/git/git-with-str-extra-config.nix

24 lines
597 B
Nix
Raw Normal View History

2018-12-11 00:51:48 +01:00
{
programs.git = {
enable = true;
signing.signer = "path-to-gpg";
extraConfig = ''
This can be anything.
2018-12-11 00:51:48 +01:00
'';
userEmail = "user@example.org";
userName = "John Doe";
2018-12-11 00:51:48 +01:00
};
test.asserts.warnings.expected = [''
Using programs.git.extraConfig as a string option is
deprecated and will be removed in the future. Please
change to using it as an attribute set instead.
''];
nmt.script = ''
assertFileExists home-files/.config/git/config
assertFileContent home-files/.config/git/config \
${./git-with-str-extra-config-expected.conf}
'';
2018-12-11 00:51:48 +01:00
}