1
0
mirror of https://github.com/nix-community/home-manager synced 2024-07-03 03:48:31 +02:00
home-manager/tests/modules/programs/git/git-with-str-extra-config.nix

30 lines
688 B
Nix
Raw Normal View History

{ config, lib, pkgs, ... }:
2018-12-11 00:51:48 +01:00
with lib;
{
config = {
programs.git = {
enable = true;
package = pkgs.gitMinimal;
2018-12-11 00:51:48 +01:00
extraConfig = ''
This can be anything.
'';
userEmail = "user@example.org";
userName = "John Doe";
};
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.
''];
2018-12-11 00:51:48 +01:00
nmt.script = ''
assertFileExists home-files/.config/git/config
assertFileContent home-files/.config/git/config \
${./git-with-str-extra-config-expected.conf}
'';
};
}