2023-09-17 19:51:08 +00:00
|
|
|
{
|
|
|
|
config,
|
|
|
|
lib,
|
|
|
|
pkgs,
|
|
|
|
...
|
|
|
|
}:
|
|
|
|
with lib; let
|
|
|
|
cfg = config.services.skynet_ulfm;
|
|
|
|
in {
|
2023-05-24 14:59:22 +00:00
|
|
|
imports = [
|
|
|
|
./acme.nix
|
2023-05-24 15:52:18 +00:00
|
|
|
./dns.nix
|
|
|
|
./firewall.nix
|
2023-05-24 14:59:22 +00:00
|
|
|
./nginx.nix
|
|
|
|
];
|
2023-04-21 00:44:11 +00:00
|
|
|
|
2023-05-24 14:59:22 +00:00
|
|
|
options.services.skynet_ulfm = {
|
2023-09-17 19:51:08 +00:00
|
|
|
enable = mkEnableOption "ULFM service";
|
|
|
|
|
|
|
|
host = {
|
|
|
|
ip = mkOption {
|
|
|
|
type = types.str;
|
|
|
|
};
|
|
|
|
|
|
|
|
name = mkOption {
|
|
|
|
type = types.str;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
domain = {
|
|
|
|
tld = mkOption {
|
|
|
|
type = types.str;
|
|
|
|
default = "ie";
|
|
|
|
};
|
|
|
|
|
|
|
|
base = mkOption {
|
|
|
|
type = types.str;
|
|
|
|
default = "skynet";
|
|
|
|
};
|
|
|
|
|
|
|
|
sub = mkOption {
|
|
|
|
type = types.str;
|
|
|
|
default = "ulfm";
|
|
|
|
};
|
|
|
|
};
|
2023-04-21 00:44:11 +00:00
|
|
|
};
|
|
|
|
|
2023-05-24 14:59:22 +00:00
|
|
|
config = mkIf cfg.enable {
|
2023-11-20 16:52:24 +00:00
|
|
|
# TODO: extract this out into its own config
|
2023-05-24 14:59:22 +00:00
|
|
|
age.secrets.ulfm.file = ../secrets/stream_ulfm.age;
|
|
|
|
|
|
|
|
networking.firewall.allowedTCPPorts = [
|
|
|
|
8000
|
|
|
|
];
|
|
|
|
|
2023-08-06 19:09:15 +00:00
|
|
|
skynet_acme.domains = [
|
|
|
|
"${cfg.domain.sub}.${cfg.domain.base}.${cfg.domain.tld}"
|
|
|
|
];
|
|
|
|
|
2023-07-16 00:53:21 +00:00
|
|
|
skynet_dns.records = [
|
2023-09-17 19:51:08 +00:00
|
|
|
{
|
|
|
|
record = cfg.domain.sub;
|
|
|
|
r_type = "CNAME";
|
|
|
|
value = cfg.host.name;
|
|
|
|
}
|
2023-05-24 14:59:22 +00:00
|
|
|
];
|
|
|
|
|
|
|
|
skynet_firewall.forward = [
|
|
|
|
"ip daddr ${cfg.host.ip} tcp dport 80 counter packets 0 bytes 0 accept"
|
|
|
|
"ip daddr ${cfg.host.ip} tcp dport 443 counter packets 0 bytes 0 accept"
|
|
|
|
"ip daddr ${cfg.host.ip} tcp dport 8000 counter packets 0 bytes 0 accept"
|
|
|
|
];
|
2023-04-21 00:44:11 +00:00
|
|
|
|
2023-05-24 14:59:22 +00:00
|
|
|
users.groups."icecast" = {};
|
|
|
|
|
|
|
|
users.users."icecast2" = {
|
|
|
|
createHome = true;
|
|
|
|
isSystemUser = true;
|
|
|
|
home = "/etc/icecast2";
|
|
|
|
group = "icecast";
|
|
|
|
};
|
|
|
|
|
|
|
|
systemd.services.icecast = {
|
2023-09-17 19:51:08 +00:00
|
|
|
after = ["network.target"];
|
2023-05-24 14:59:22 +00:00
|
|
|
description = "Icecast Network Audio Streaming Server";
|
2023-09-17 19:51:08 +00:00
|
|
|
wantedBy = ["multi-user.target"];
|
2023-05-24 14:59:22 +00:00
|
|
|
|
|
|
|
preStart = "mkdir -p /var/log/icecast && chown nobody:nogroup /var/log/icecast";
|
|
|
|
serviceConfig = {
|
|
|
|
Type = "simple";
|
|
|
|
ExecStart = "${pkgs.icecast}/bin/icecast -c /run/agenix/ulfm";
|
|
|
|
ExecReload = "${pkgs.coreutils}/bin/kill -HUP $MAINPID";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2024-01-31 15:43:18 +00:00
|
|
|
services.nginx = {
|
|
|
|
enable = true;
|
|
|
|
group = "acme";
|
|
|
|
|
|
|
|
virtualHosts = {
|
|
|
|
"${cfg.domain.sub}.${cfg.domain.base}.${cfg.domain.tld}" = {
|
|
|
|
forceSSL = true;
|
|
|
|
useACMEHost = "skynet";
|
|
|
|
locations."/".proxyPass = "http://localhost:8000";
|
|
|
|
};
|
|
|
|
"${cfg.host.ip}" = {
|
|
|
|
forceSSL = true;
|
|
|
|
useACMEHost = "skynet";
|
|
|
|
locations."/".return = "307 https://skynet.ie";
|
|
|
|
};
|
|
|
|
};
|
2023-04-21 00:44:11 +00:00
|
|
|
};
|
|
|
|
};
|
2023-09-17 19:51:08 +00:00
|
|
|
}
|