Compare commits
3 Commits
705ee12cc1
...
5c2fa7957b
Author | SHA1 | Date |
---|---|---|
Nathan McCarty | 5c2fa7957b | |
Nathan McCarty | f9a7e0df9c | |
Nathan McCarty | e72e20b4af |
|
@ -35,6 +35,16 @@ rec {
|
||||||
key =
|
key =
|
||||||
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIMgtdTJThr5/vfUswQb3ee6A++W1OxAOGFQJTE8xDuHv nathan@productivity-vm";
|
"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);
|
list = map (x: x.key) (builtins.attrValues keys);
|
||||||
allowedSigners = builtins.concatStringsSep "\n" (map (x:
|
allowedSigners = builtins.concatStringsSep "\n" (map (x:
|
||||||
|
|
|
@ -108,8 +108,10 @@
|
||||||
};
|
};
|
||||||
in {
|
in {
|
||||||
enable = true;
|
enable = true;
|
||||||
|
settings = {
|
||||||
concurrent = 4;
|
concurrent = 4;
|
||||||
checkInterval = 1;
|
checkInterval = 1;
|
||||||
|
};
|
||||||
services = {
|
services = {
|
||||||
# default-asuran = {
|
# default-asuran = {
|
||||||
# registrationConfigFile = "/var/lib/secret/gitlab-runner/asuran-default";
|
# registrationConfigFile = "/var/lib/secret/gitlab-runner/asuran-default";
|
||||||
|
@ -145,4 +147,7 @@
|
||||||
forceSSL = true;
|
forceSSL = true;
|
||||||
locations."/" = { proxyPass = "http://localhost:8091"; };
|
locations."/" = { proxyPass = "http://localhost:8091"; };
|
||||||
};
|
};
|
||||||
|
|
||||||
|
# Setup hosts for gitea automation
|
||||||
|
networking.hosts = { "100.99.69.14" = [ "git.stranger.systems" ]; };
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,3 +1,10 @@
|
||||||
{ config, lib, pkgs, ... }:
|
{ config, lib, pkgs, ... }:
|
||||||
|
|
||||||
{ }
|
{
|
||||||
|
nathan = {
|
||||||
|
programs = {
|
||||||
|
devel = { core = true; };
|
||||||
|
util = { git = { sshSign = true; }; };
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in New Issue