1
0
mirror of https://github.com/nix-community/home-manager synced 2024-06-02 21:13:33 +02:00
home-manager/tests/modules/programs/git/git.nix

85 lines
1.9 KiB
Nix
Raw Normal View History

2019-01-29 12:33:10 +01:00
{ config, lib, pkgs, ... }:
2018-12-11 00:51:48 +01:00
with lib;
2019-01-29 12:33:10 +01:00
let
gitInclude = {
user = {
name = "John Doe";
email = "user@example.org";
};
};
2020-02-02 00:39:17 +01:00
substituteExpected = path:
pkgs.substituteAll {
src = path;
2019-01-29 12:33:10 +01:00
deltaCommand = "${pkgs.gitAndTools.delta}/bin/delta";
git_include_path = pkgs.writeText "contents"
(builtins.readFile ./git-expected-include.conf);
2020-02-02 00:39:17 +01:00
};
2019-01-29 12:33:10 +01:00
2020-02-02 00:39:17 +01:00
in {
2018-12-11 00:51:48 +01:00
config = {
programs.git = mkMerge [
{
enable = true;
package = pkgs.gitMinimal;
aliases = {
a1 = "foo";
a2 = "bar";
escapes = ''"\n '';
2018-12-11 00:51:48 +01:00
};
extraConfig = {
extra = {
name = "value";
2020-02-02 00:39:17 +01:00
multiple = [ 1 ];
};
};
ignores = [ "*~" "*.swp" ];
includes = [
{ path = "~/path/to/config.inc"; }
{
path = "~/path/to/conditional.inc";
condition = "gitdir:~/src/dir";
}
2019-01-29 12:33:10 +01:00
{
condition = "gitdir:~/src/dir";
contents = gitInclude;
}
];
signing = {
gpgPath = "path-to-gpg";
key = "00112233445566778899AABBCCDDEEFF";
signByDefault = true;
};
userEmail = "user@example.org";
userName = "John Doe";
lfs.enable = true;
delta = {
enable = true;
options = [ "--dark" ];
};
}
{
aliases.a2 = mkForce "baz";
extraConfig."extra \"backcompat.with.dots\"".previously = "worked";
extraConfig.extra.boolean = true;
extraConfig.extra.integer = 38;
2020-02-02 00:39:17 +01:00
extraConfig.extra.multiple = [ 2 ];
extraConfig.extra.subsection.value = "test";
}
];
2018-12-11 00:51:48 +01:00
nmt.script = ''
assertFileExists home-files/.config/git/config
2020-02-02 00:39:17 +01:00
assertFileContent home-files/.config/git/config ${
substituteExpected ./git-expected.conf
}
2018-12-11 00:51:48 +01:00
'';
};
}