1
0
mirror of https://github.com/nix-community/home-manager synced 2024-06-18 20:48:31 +02:00
home-manager/tests/modules/programs/git-with-str-extra-config.nix
2018-12-11 00:57:58 +01:00

23 lines
426 B
Nix

{ config, lib, ... }:
with lib;
{
config = {
programs.git = {
enable = true;
extraConfig = ''
This can be anything.
'';
userEmail = "user@example.org";
userName = "John Doe";
};
nmt.script = ''
assertFileExists home-files/.config/git/config
assertFileContent home-files/.config/git/config \
${./git-with-str-extra-config-expected.conf}
'';
};
}