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;
|
2020-03-05 15:57:19 +01:00
|
|
|
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 = {
|
2019-02-01 01:06:18 +01:00
|
|
|
programs.git = mkMerge [
|
|
|
|
{
|
|
|
|
enable = true;
|
2019-10-08 22:46:27 +02:00
|
|
|
package = pkgs.gitMinimal;
|
2019-02-01 01:06:18 +01:00
|
|
|
aliases = {
|
|
|
|
a1 = "foo";
|
|
|
|
a2 = "bar";
|
2020-05-01 00:11:14 +02:00
|
|
|
escapes = ''"\n '';
|
2018-12-11 00:51:48 +01:00
|
|
|
};
|
2019-02-01 01:06:18 +01:00
|
|
|
extraConfig = {
|
|
|
|
extra = {
|
|
|
|
name = "value";
|
2020-02-02 00:39:17 +01:00
|
|
|
multiple = [ 1 ];
|
2019-02-01 01:06:18 +01:00
|
|
|
};
|
|
|
|
};
|
|
|
|
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;
|
|
|
|
}
|
2019-02-01 01:06:18 +01:00
|
|
|
];
|
|
|
|
signing = {
|
|
|
|
gpgPath = "path-to-gpg";
|
|
|
|
key = "00112233445566778899AABBCCDDEEFF";
|
|
|
|
signByDefault = true;
|
|
|
|
};
|
|
|
|
userEmail = "user@example.org";
|
|
|
|
userName = "John Doe";
|
2019-02-03 23:54:29 +01:00
|
|
|
lfs.enable = true;
|
2020-04-26 11:20:00 +02:00
|
|
|
delta = {
|
|
|
|
enable = true;
|
2020-07-20 17:03:40 +02:00
|
|
|
options = {
|
|
|
|
features = "decorations";
|
|
|
|
whitespace-error-style = "22 reverse";
|
|
|
|
decorations = {
|
|
|
|
commit-decoration-style = "bold yellow box ul";
|
|
|
|
file-style = "bold yellow ul";
|
|
|
|
file-decoration-style = "none";
|
|
|
|
};
|
|
|
|
};
|
2020-04-26 11:20:00 +02:00
|
|
|
};
|
2019-02-01 01:06:18 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
{
|
|
|
|
aliases.a2 = mkForce "baz";
|
2019-03-13 00:06:36 +01:00
|
|
|
extraConfig."extra \"backcompat.with.dots\"".previously = "worked";
|
2019-02-01 01:06:18 +01:00
|
|
|
extraConfig.extra.boolean = true;
|
|
|
|
extraConfig.extra.integer = 38;
|
2020-02-02 00:39:17 +01:00
|
|
|
extraConfig.extra.multiple = [ 2 ];
|
2019-03-13 00:06:36 +01:00
|
|
|
extraConfig.extra.subsection.value = "test";
|
2019-02-01 01:06:18 +01:00
|
|
|
}
|
|
|
|
];
|
2018-12-11 00:51:48 +01:00
|
|
|
|
2021-09-26 11:08:45 +02:00
|
|
|
test.stubs = {
|
|
|
|
git-lfs = { };
|
|
|
|
delta = { };
|
|
|
|
};
|
2020-10-11 22:36:26 +02:00
|
|
|
|
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
|
|
|
'';
|
|
|
|
};
|
|
|
|
}
|