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;