mirror of
https://github.com/nix-community/home-manager.git
synced 2025-12-09 18:41:06 +01:00
git: extraConfig -> settings
Remove string support and convert to rfc42 settings option Signed-off-by: Austin Horstman <khaneliman12@gmail.com>
This commit is contained in:
parent
85cd07b8b0
commit
ac7c05a90c
10 changed files with 17 additions and 65 deletions
|
|
@ -73,11 +73,12 @@ in
|
|||
|
||||
{
|
||||
aliases.a2 = lib.mkForce "baz";
|
||||
extraConfig."extra \"backcompat.with.dots\"".previously = "worked";
|
||||
extraConfig.extra.boolean = true;
|
||||
extraConfig.extra.integer = 38;
|
||||
extraConfig.extra.multiple = [ 2 ];
|
||||
extraConfig.extra.subsection.value = "test";
|
||||
settings.alias.a2 = lib.mkForce "baz";
|
||||
settings."extra \"backcompat.with.dots\"".previously = "worked";
|
||||
settings.extra.boolean = true;
|
||||
settings.extra.integer = 38;
|
||||
settings.extra.multiple = [ 2 ];
|
||||
settings.extra.subsection.value = "test";
|
||||
}
|
||||
];
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue