mirror of
https://github.com/davegallant/nix-config
synced 2025-08-05 23:03:40 +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 = {
|
||||
|
@@ -59,7 +59,7 @@ with pkgs; [
|
||||
tflint
|
||||
tfsec
|
||||
|
||||
# cloud
|
||||
# gcp
|
||||
google-cloud-sdk
|
||||
|
||||
# jvm
|
||||
|
Reference in New Issue
Block a user