1
0
Fork 0
mirror of https://github.com/nix-community/home-manager.git synced 2025-11-08 11:36:05 +01:00

git: support multiple values

Closes #614
This commit is contained in:
arcnmx 2019-03-12 01:35:55 -07:00 committed by Robert Helgesson
parent 28f2dd612e
commit 472d7731d6
No known key found for this signature in database
GPG key ID: 36BDAA14C2797E89
3 changed files with 19 additions and 4 deletions

View file

@ -8,6 +8,8 @@ gpgSign=true
[extra]
boolean=true
integer=38
multiple=1
multiple=2
name=value
[filter "lfs"]

View file

@ -31,6 +31,7 @@ in
extraConfig = {
extra = {
name = "value";
multiple = [1];
};
};
ignores = [ "*~" "*.swp" ];
@ -59,6 +60,7 @@ in
aliases.a2 = mkForce "baz";
extraConfig.extra.boolean = true;
extraConfig.extra.integer = 38;
extraConfig.extra.multiple = [2];
}
];