Compare commits

...

3 Commits

Author SHA1 Message Date
Nathan McCarty 5c2fa7957b
Fix renamed options for oracle 2023-05-13 17:04:50 -04:00
Nathan McCarty f9a7e0df9c
Prepare oracles for git automation 2023-05-13 17:03:44 -04:00
Nathan McCarty e72e20b4af
Add keys 2023-05-13 16:59:27 -04:00
3 changed files with 25 additions and 3 deletions

View File

@ -35,6 +35,16 @@ rec {
key =
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIMgtdTJThr5/vfUswQb3ee6A++W1OxAOGFQJTE8xDuHv nathan@productivity-vm";
};
# oracles key
"oracles" = {
key =
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIAj6He0uDnJAZsfywoUwOSAnxqpbO9UnfcAV78a1SUGa nathan@oracles";
};
# fusion key
"fusion" = {
key =
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAICILeBcpPVs12pDnsOPyDVwnwReCbrqzXMF+cV5bWCCa nathan@fusion";
};
};
list = map (x: x.key) (builtins.attrValues keys);
allowedSigners = builtins.concatStringsSep "\n" (map (x:

View File

@ -108,8 +108,10 @@
};
in {
enable = true;
concurrent = 4;
checkInterval = 1;
settings = {
concurrent = 4;
checkInterval = 1;
};
services = {
# default-asuran = {
# registrationConfigFile = "/var/lib/secret/gitlab-runner/asuran-default";
@ -145,4 +147,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; }; };
};
};
}