homelab/lxc-ergo.nix

140 lines
4 KiB
Nix
Raw Permalink Normal View History

2026-02-09 22:15:08 -06:00
{
pkgs,
lib,
...
}:
{
imports = [
./lxc-base.nix
];
config = {
my.vm = {
name = "ergo01";
ip4 = "192.168.0.8";
};
environment.systemPackages = with pkgs; [
certbot
];
networking.firewall.trustedInterfaces = [ "br-+" ];
networking.firewall.allowedTCPPorts = [
2026-02-12 23:22:18 -06:00
8067
2026-02-09 22:15:08 -06:00
6697
443
80
];
virtualisation.docker = {
enable = true;
daemon.settings = {
fixed-cidr-v6 = "fd00::/80";
ipv6 = true;
};
};
security.acme = {
acceptTerms = true;
defaults.email = "admin+acme@dukeceph.xyz";
};
services.nginx = {
enable = true;
virtualHosts."irc.dukeceph.xyz" = {
addSSL = true;
enableACME = true;
2026-02-12 23:22:18 -06:00
root = "/var/www/html";
locations."/webirc".extraConfig = ''
proxy_pass http://127.0.0.1:8067;
proxy_read_timeout 600s;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "Upgrade";
proxy_set_header X-Forwarded-For $remote_addr;
proxy_set_header X-Forwarded-Proto $scheme;
'';
2026-02-09 22:15:08 -06:00
};
};
2026-02-12 23:22:18 -06:00
users.groups."ergo" = { };
2026-02-09 22:15:08 -06:00
users.users."ergo" = {
2026-02-12 23:22:18 -06:00
group = "ergo";
isSystemUser = true;
2026-02-09 22:15:08 -06:00
};
services.ergochat = {
enable = true;
settings = {
network = {
name = "dukeceph.xyz";
};
server = {
name = "dukeceph.xyz";
enforce-utf8 = true;
ip-cloaking = {
enabled = true;
netname = "dukeceph.xyz";
};
listeners = {
":6697" = {
tls = {
cert = "/etc/letsencrypt/live/irc.dukeceph.xyz/fullchain.pem";
key = "/etc/letsencrypt/live/irc.dukeceph.xyz/privkey.pem";
};
};
2026-02-12 23:22:18 -06:00
":8067" = {
websocket = true;
};
2026-02-09 22:15:08 -06:00
};
2026-02-12 23:22:18 -06:00
secure-nets = [
"127.0.0.0/24"
"192.168.0.0/24"
];
2026-02-09 22:15:08 -06:00
};
oper-classes = {
chat-moderator = {
title = "Chat Moderator";
capabilities = [
2026-02-12 23:22:18 -06:00
"kill" # disconnect user sessions
"ban" # ban IPs, CIDRs, NUH masks, and suspend accounts (UBAN / DLINE / KLINE)
2026-02-09 22:15:08 -06:00
"nofakelag" # exempted from "fakelag" restrictions on rate of message sending
2026-02-12 23:22:18 -06:00
"relaymsg" # use RELAYMSG in any channel (see the `relaymsg` config block)
"vhosts" # add and remove vhosts from users
"sajoin" # join arbitrary channels, including private channels
"samode" # modify arbitrary channel and user modes
"snomasks" # subscribe to arbitrary server notice masks
"roleplay" # use the (deprecated) roleplay commands in any channel
2026-02-09 22:15:08 -06:00
];
};
server-admin = {
title = "Server Admin";
extends = "chat-moderator";
capabilities = [
2026-02-12 23:22:18 -06:00
"rehash" # rehash the server, i.e. reload the config at runtime
"accreg" # modify arbitrary account registrations
"chanreg" # modify arbitrary channel registrations
"history" # modify or delete history messages
"defcon" # use the DEFCON command (restrict server capabilities)
"massmessage" # message all users on the server
"metadata" # modify arbitrary metadata on channels and users
2026-02-09 22:15:08 -06:00
];
};
};
opers = {
duke = {
class = "server-admin";
whois-line = "is the server administrator";
password = "$2a$04$eEXmtfM76.qp3D7kJna7k.dF7xeeACwvxwxUM4.ysW5Kndk/S.drG";
};
};
};
};
systemd.services.ergochat.serviceConfig.DynamicUser = lib.mkForce false;
systemd.services.ergochat.serviceConfig.User = "ergo";
systemd.services.ergochat.serviceConfig.Group = "ergo";
2026-02-12 23:22:18 -06:00
systemd.services.ergochat.restartIfChanged = false;
2026-02-09 22:15:08 -06:00
};
}