Compare commits

...

3 Commits

2 changed files with 8 additions and 0 deletions

View File

@ -1,9 +1,16 @@
{ config, pkgs, libs, ... }: { config, pkgs, libs, ... }:
{ {
home.packages = with pkgs; [ home.packages = with pkgs; [
# Javascript
nodejs nodejs
nodePackages.yarn nodePackages.yarn
# PHP
php php
# Kubernetes
azure-cli
kubectl
kubernetes-helm
# Nix
rnix-lsp rnix-lsp
]; ];
} }

View File

@ -12,6 +12,7 @@
extraConfig = { extraConfig = {
credential.helper = lib.mkDefault "store"; credential.helper = lib.mkDefault "store";
pull.rebase = "false"; pull.rebase = "false";
init.defaultBranch = "main";
}; };
}; };
} }