From 8f0db0ff00a818191f5664c4fed94ab4b6c91b03 Mon Sep 17 00:00:00 2001 From: Dustin Swan Date: Mon, 16 Mar 2026 03:05:37 +0000 Subject: [PATCH] Adding git config to vps --- hosts/soleo/configuration.nix | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/hosts/soleo/configuration.nix b/hosts/soleo/configuration.nix index 23178cf..2f86b71 100644 --- a/hosts/soleo/configuration.nix +++ b/hosts/soleo/configuration.nix @@ -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;