diff --git a/machines/oracles/configuration.nix b/machines/oracles/configuration.nix index 740504c..9d42a6f 100644 --- a/machines/oracles/configuration.nix +++ b/machines/oracles/configuration.nix @@ -145,4 +145,7 @@ forceSSL = true; locations."/" = { proxyPass = "http://localhost:8091"; }; }; + + # Setup hosts for gitea automation + networking.hosts = { "100.99.69.14" = [ "git.stranger.systems" ]; }; } diff --git a/machines/oracles/home.nix b/machines/oracles/home.nix index 88d8a3b..7154cb1 100644 --- a/machines/oracles/home.nix +++ b/machines/oracles/home.nix @@ -1,3 +1,10 @@ { config, lib, pkgs, ... }: -{ } +{ + nathan = { + programs = { + devel = { core = true; }; + util = { git = { sshSign = true; }; }; + }; + }; +}