xin/configs/ci.nix

93 lines
2.1 KiB
Nix
Raw Normal View History

{ config, lib, pkgs, inputs, xinlib, ... }:
let
jobs = [
{
name = "xin-ci-update";
2023-03-03 07:06:30 -07:00
user = "qbit";
2023-02-10 05:19:13 -07:00
script = "cd ~/src/xin && ./bin/ci update";
2023-02-04 09:12:08 -07:00
startAt = "23:00";
path = [ ];
}
{
name = "xin-ci";
2023-03-03 07:06:30 -07:00
user = "qbit";
2023-02-10 05:19:13 -07:00
script = "cd ~/src/xin && ./bin/ci";
2023-02-04 07:12:41 -07:00
startAt = "*:30:00";
path = [ ];
}
];
in with lib; {
2023-01-31 12:55:00 -07:00
options = {
xinCI = {
enable = mkEnableOption "Configure host as a xin CI host.";
2023-01-31 12:55:00 -07:00
user = mkOption {
type = types.str;
default = "root";
description = ''
User who will own the CI private key.
2023-01-31 12:55:00 -07:00
'';
};
};
};
2023-01-31 12:55:24 -07:00
imports = [ ../modules/ts-rev-prox.nix ];
2023-01-31 12:55:00 -07:00
config = mkIf config.xinCI.enable {
sops.defaultSopsFile = config.xin-secrets.ci;
sops.secrets = {
2023-01-31 13:52:34 -07:00
po_env = { owner = config.xinCI.user; };
2023-01-31 12:55:00 -07:00
ci_ed25519_key = {
mode = "400";
owner = config.xinCI.user;
};
ci_ed25519_pub = {
mode = "444";
owner = config.xinCI.user;
};
bin_cache_priv_key = {
mode = "400";
owner = "root";
group = "wheel";
};
bin_cache_pub_key = {
mode = "444";
owner = "root";
group = "wheel";
};
ts_proxy_env = {
mode = "400";
owner = config.services.tsrevprox.user;
};
};
environment.systemPackages = with pkgs; [
inputs.po.packages.${pkgs.system}.po
keychain
];
2023-01-31 12:55:00 -07:00
nix = {
settings.allowed-users = [ "root" config.xinCI.user "nix-serve" ];
};
systemd.services = lib.listToAttrs (builtins.map xinlib.jobToService jobs);
2023-01-31 12:55:00 -07:00
services = {
tsrevprox = {
enable = true;
reverseName = "nix-binary-cache";
envFile = config.sops.secrets.ts_proxy_env.path;
};
nix-serve = {
package = pkgs.nix-serve.override {
nix =
2023-01-31 13:16:42 -07:00
inputs.unstable.legacyPackages.x86_64-linux.nixVersions.nix_2_12;
2023-01-31 12:55:00 -07:00
};
enable = true;
secretKeyFile = config.sops.secrets.bin_cache_priv_key.path;
bindAddress = "127.0.0.1";
};
};
boot.binfmt.emulatedSystems = [ "aarch64-linux" ];
};
}