1
0
Fork 0
mirror of https://github.com/nix-community/home-manager synced 2024-11-27 05:29:46 +01:00

git: use attrsOf instead of attrs

This makes sure that values added to

    programs.git.aliases

or

    programs.git.extraConfig

are merged as expected.

Also add a few option examples.
This commit is contained in:
Robert Helgesson 2019-02-01 01:06:18 +01:00
parent 0590c2a4f6
commit 445c0b1482
No known key found for this signature in database
GPG key ID: 36BDAA14C2797E89
3 changed files with 50 additions and 30 deletions

View file

@ -6,6 +6,12 @@ let
cfg = config.programs.git; cfg = config.programs.git;
gitIniType = with types;
let
primitiveType = either bool (either int str);
in
attrsOf (attrsOf primitiveType);
signModule = types.submodule { signModule = types.submodule {
options = { options = {
key = mkOption { key = mkOption {
@ -80,8 +86,9 @@ in
}; };
aliases = mkOption { aliases = mkOption {
type = types.attrs; type = types.attrsOf types.str;
default = {}; default = {};
example = { co = "checkout"; };
description = "Git aliases to define."; description = "Git aliases to define.";
}; };
@ -92,13 +99,16 @@ in
}; };
extraConfig = mkOption { extraConfig = mkOption {
type = types.either types.attrs types.lines; type = types.either types.lines gitIniType;
default = {}; default = {};
example = {
core = { whitespace = "trailing-space,space-before-tab"; };
};
description = "Additional configuration to add."; description = "Additional configuration to add.";
}; };
iniContent = mkOption { iniContent = mkOption {
type = types.attrsOf types.attrs; type = gitIniType;
internal = true; internal = true;
}; };

View file

@ -1,11 +1,13 @@
[alias] [alias]
a1=foo a1=foo
a2=bar a2=baz
[commit] [commit]
gpgSign=true gpgSign=true
[extra] [extra]
boolean=true
integer=38
name=value name=value
[gpg] [gpg]

View file

@ -4,7 +4,8 @@ with lib;
{ {
config = { config = {
programs.git = { programs.git = mkMerge [
{
enable = true; enable = true;
aliases = { aliases = {
a1 = "foo"; a1 = "foo";
@ -30,7 +31,14 @@ with lib;
}; };
userEmail = "user@example.org"; userEmail = "user@example.org";
userName = "John Doe"; userName = "John Doe";
}; }
{
aliases.a2 = mkForce "baz";
extraConfig.extra.boolean = true;
extraConfig.extra.integer = 38;
}
];
nmt.script = '' nmt.script = ''
assertFileExists home-files/.config/git/config assertFileExists home-files/.config/git/config