Adding git config to vps

This commit is contained in:
Dustin Swan 2026-03-16 03:05:37 +00:00
parent 4e0f91bb81
commit 8f0db0ff00

View file

@ -71,10 +71,15 @@
networking.firewall.allowedTCPPorts = [ 80 443 ];
environment.systemPackages = with pkgs; [
git
forgejo
];
# environment.systemPackages = with pkgs; [ ];
programs.git = {
enable = true;
config = {
user.email = "dustin@dustinswan.com";
user.name = "Dustin Swan";
};
};
programs.neovim = {
enable = true;