Compare commits
3 Commits
705ee12cc1
...
5c2fa7957b
Author | SHA1 | Date |
---|---|---|
Nathan McCarty | 5c2fa7957b | |
Nathan McCarty | f9a7e0df9c | |
Nathan McCarty | e72e20b4af |
|
@ -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:
|
||||
|
|
|
@ -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" ]; };
|
||||
}
|
||||
|
|
|
@ -1,3 +1,10 @@
|
|||
{ config, lib, pkgs, ... }:
|
||||
|
||||
{ }
|
||||
{
|
||||
nathan = {
|
||||
programs = {
|
||||
devel = { core = true; };
|
||||
util = { git = { sshSign = true; }; };
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue