feat: add meta option and move forgejo-runner to dedicated file
This commit is contained in:
parent
105d79208b
commit
b3977d8d74
6 changed files with 97 additions and 41 deletions
|
@ -14,6 +14,7 @@ in
|
||||||
(modulesPath + "/profiles/qemu-guest.nix")
|
(modulesPath + "/profiles/qemu-guest.nix")
|
||||||
./disk-config.nix
|
./disk-config.nix
|
||||||
./forgejo.nix
|
./forgejo.nix
|
||||||
|
./forgejo-runner.nix
|
||||||
./headscale
|
./headscale
|
||||||
./fail2ban.nix
|
./fail2ban.nix
|
||||||
];
|
];
|
||||||
|
@ -41,7 +42,7 @@ in
|
||||||
settings = {
|
settings = {
|
||||||
server = {
|
server = {
|
||||||
url = "https://rusty.ccnlc.eu";
|
url = "https://rusty.ccnlc.eu";
|
||||||
max_content_length = "50MB";
|
max_content_length = "1000MB";
|
||||||
timeout = "30s";
|
timeout = "30s";
|
||||||
expose_version = false;
|
expose_version = false;
|
||||||
expose_list = false;
|
expose_list = false;
|
||||||
|
@ -76,8 +77,6 @@ in
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
services.headscale.enable = true;
|
|
||||||
|
|
||||||
networking = {
|
networking = {
|
||||||
nftables.enable = true;
|
nftables.enable = true;
|
||||||
firewall = {
|
firewall = {
|
||||||
|
@ -85,37 +84,42 @@ in
|
||||||
allowedTCPPorts = [
|
allowedTCPPorts = [
|
||||||
80 # for acme challenges
|
80 # for acme challenges
|
||||||
443
|
443
|
||||||
] ++ [ config.services.endlessh.port ];
|
];
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
age.identityPaths = [ "/etc/ssh/ssh_host_ed25519_key" ];
|
age.identityPaths = [ "/etc/ssh/ssh_host_ed25519_key" ];
|
||||||
|
|
||||||
security.acme.defaults.email = "admin@ccnlc.eu";
|
security = {
|
||||||
security.acme.acceptTerms = true;
|
polkit.enable = true;
|
||||||
|
|
||||||
services.nginx = {
|
acme = {
|
||||||
package = pkgs.nginxQuic;
|
defaults.email = "admin@ccnlc.eu";
|
||||||
enable = true;
|
acceptTerms = true;
|
||||||
recommendedProxySettings = true;
|
};
|
||||||
recommendedTlsSettings = true;
|
|
||||||
clientMaxBodySize = "50M";
|
|
||||||
virtualHosts = builtins.listToAttrs [
|
|
||||||
(mkVHost "rusty.ccnlc.eu" 8000 true)
|
|
||||||
];
|
|
||||||
};
|
};
|
||||||
|
|
||||||
services.endlessh = {
|
services = {
|
||||||
enable = true;
|
fail2ban.enable = true;
|
||||||
port = 22;
|
headscale.enable = true;
|
||||||
|
|
||||||
|
nginx = {
|
||||||
|
package = pkgs.nginxQuic;
|
||||||
|
enable = true;
|
||||||
|
recommendedProxySettings = true;
|
||||||
|
recommendedTlsSettings = true;
|
||||||
|
clientMaxBodySize = "100M";
|
||||||
|
virtualHosts = builtins.listToAttrs [
|
||||||
|
(mkVHost "rusty.ccnlc.eu" 8000 true)
|
||||||
|
];
|
||||||
|
};
|
||||||
|
|
||||||
|
endlessh = {
|
||||||
|
enable = true;
|
||||||
|
port = 22;
|
||||||
|
openFirewall = true;
|
||||||
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
services.fail2ban.enable = true;
|
|
||||||
|
|
||||||
environment.systemPackages = map lib.lowPrio [
|
|
||||||
pkgs.curl
|
|
||||||
pkgs.gitMinimal
|
|
||||||
];
|
|
||||||
|
|
||||||
system.stateVersion = "24.11";
|
system.stateVersion = "24.11";
|
||||||
}
|
}
|
||||||
|
|
49
hosts/raptus/forgejo-runner.nix
Normal file
49
hosts/raptus/forgejo-runner.nix
Normal file
|
@ -0,0 +1,49 @@
|
||||||
|
{
|
||||||
|
config,
|
||||||
|
lib,
|
||||||
|
pkgs,
|
||||||
|
...
|
||||||
|
}:
|
||||||
|
let
|
||||||
|
inherit (lib) mkIf;
|
||||||
|
inherit (config.modules.meta) hostname;
|
||||||
|
|
||||||
|
cfg = config.services.forgejo;
|
||||||
|
in
|
||||||
|
{
|
||||||
|
config = mkIf cfg.enable {
|
||||||
|
services.gitea-actions-runner = {
|
||||||
|
package = pkgs.forgejo-runner;
|
||||||
|
|
||||||
|
instances."${hostname}" = {
|
||||||
|
enable = true;
|
||||||
|
name = "${hostname}";
|
||||||
|
tokenFile = config.age.secrets.forgejo-runner-token.path;
|
||||||
|
url = "https://git.ccnlc.eu";
|
||||||
|
|
||||||
|
labels = [
|
||||||
|
"debian-latest:docker://node:18-bullseye"
|
||||||
|
"ubuntu-latest:docker://node:18-bullseye"
|
||||||
|
];
|
||||||
|
};
|
||||||
|
|
||||||
|
settings = {
|
||||||
|
runner = {
|
||||||
|
capacity = 2;
|
||||||
|
timeout = "2h";
|
||||||
|
|
||||||
|
shutdown_timeout = "5s";
|
||||||
|
};
|
||||||
|
|
||||||
|
cache.enabled = true;
|
||||||
|
|
||||||
|
container = {
|
||||||
|
force_pull = false;
|
||||||
|
force_rebuild = false;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
virtualisation.docker.enable = true;
|
||||||
|
};
|
||||||
|
}
|
|
@ -16,21 +16,6 @@ in
|
||||||
"L+ ${config.services.forgejo.customDir}/public/robots.txt - - - - ${robots.outPath}"
|
"L+ ${config.services.forgejo.customDir}/public/robots.txt - - - - ${robots.outPath}"
|
||||||
];
|
];
|
||||||
|
|
||||||
services.gitea-actions-runner = {
|
|
||||||
instances."raptus" = {
|
|
||||||
enable = true;
|
|
||||||
name = "raptus";
|
|
||||||
tokenFile = config.age.secrets.forgejo-runner-token.path;
|
|
||||||
url = "https://git.ccnlc.eu";
|
|
||||||
labels = [
|
|
||||||
"debian-latest:docker://node:18-bullseye"
|
|
||||||
"nixos:docker://ghcr.io/nydragon/runner@sha256:2d353515d7461fe493cb69f538ebf188944b0de8fd2613a652636fc75098acac"
|
|
||||||
];
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
virtualisation.docker.enable = true;
|
|
||||||
|
|
||||||
networking.firewall.allowedTCPPorts = [ sshPort ];
|
networking.firewall.allowedTCPPorts = [ sshPort ];
|
||||||
|
|
||||||
services.nginx = {
|
services.nginx = {
|
||||||
|
|
|
@ -2,6 +2,7 @@
|
||||||
imports = [
|
imports = [
|
||||||
./media.nix
|
./media.nix
|
||||||
./fs.nix
|
./fs.nix
|
||||||
|
./meta.nix
|
||||||
|
|
||||||
./services
|
./services
|
||||||
./system
|
./system
|
||||||
|
|
14
options/meta.nix
Normal file
14
options/meta.nix
Normal file
|
@ -0,0 +1,14 @@
|
||||||
|
{ lib, ... }:
|
||||||
|
let
|
||||||
|
inherit (lib) mkOption;
|
||||||
|
inherit (lib.types) nullOr str;
|
||||||
|
in
|
||||||
|
{
|
||||||
|
options.modules.meta = {
|
||||||
|
hostname = mkOption {
|
||||||
|
default = null;
|
||||||
|
type = nullOr str;
|
||||||
|
description = "The system's hostname.";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
|
@ -43,7 +43,10 @@ in
|
||||||
"${self}/hosts/${hostname}"
|
"${self}/hosts/${hostname}"
|
||||||
"${self}/options"
|
"${self}/options"
|
||||||
"${self}/modules"
|
"${self}/modules"
|
||||||
{ networking.hostName = hostname; }
|
{
|
||||||
|
modules.meta.hostname = hostname;
|
||||||
|
networking.hostName = hostname;
|
||||||
|
}
|
||||||
] ++ extraModules;
|
] ++ extraModules;
|
||||||
specialArgs = {
|
specialArgs = {
|
||||||
inherit inputs inputs';
|
inherit inputs inputs';
|
||||||
|
|
Loading…
Add table
Reference in a new issue