mirror of
https://github.com/davegallant/nix-config
synced 2025-08-07 00:58:16 +00:00
nix: fix git config to use attribute sets
This commit is contained in:
@@ -85,12 +85,11 @@
|
||||
};
|
||||
};
|
||||
|
||||
extraConfig = ''
|
||||
[push]
|
||||
default = current
|
||||
[pull]
|
||||
rebase = true
|
||||
'';
|
||||
extraConfig = {
|
||||
push = { default = "current"; };
|
||||
pull = { rebase = true; };
|
||||
};
|
||||
|
||||
};
|
||||
|
||||
starship = {
|
||||
|
Reference in New Issue
Block a user