Prepare oracles for git automation

This commit is contained in:
Nathan McCarty 2023-05-13 17:03:44 -04:00
parent e72e20b4af
commit f9a7e0df9c
Signed by: thatonelutenist
SSH Key Fingerprint: SHA256:hwQEcmak9E6sdU9bXc98RHw/Xd1AhpB5HZT7ZSVJkRM
2 changed files with 11 additions and 1 deletions

View File

@ -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" ]; };
}

View File

@ -1,3 +1,10 @@
{ config, lib, pkgs, ... }:
{ }
{
nathan = {
programs = {
devel = { core = true; };
util = { git = { sshSign = true; }; };
};
};
}