115 lines
2.8 KiB
Nix
Raw Permalink Normal View History

2021-11-05 07:06:08 -07:00
{ config, lib, pkgs, ... }:
with lib;
let
hostname = "legatus";
2022-08-22 11:30:18 -07:00
host-ipv4 = "190.2.136.47";
2021-11-05 07:06:08 -07:00
domain-name = config.fudo.hosts.${hostname}.domain;
domain = config.fudo.domains.${domain-name};
site-name = config.fudo.hosts.${hostname}.site;
site = config.fudo.sites.${site-name};
local-packages = with pkgs; [ ldns.examples ];
2021-12-18 12:10:42 -08:00
host-secrets = config.fudo.secrets.host-secrets.${hostname};
2021-11-05 07:06:08 -07:00
in {
networking = {
enableIPv6 = true;
nameservers = [ "1.1.1.1" ];
defaultGateway = {
address = site.gateway-v4;
interface = "extif0";
};
interfaces.extif0.ipv4.addresses = [{
address = host-ipv4;
prefixLength = 24;
}];
};
2023-10-14 16:15:26 -07:00
# Getting errors due to running VMs
boot.kernel.sysctl."fs.inotify.max_user_instances" = 512;
2022-08-22 11:30:18 -07:00
security.acme.defaults.email = "admin@legatus.fudo.org";
2023-10-14 16:15:26 -07:00
systemd.tmpfiles.rules = [
"L /etc/adjtime - - - - /state/etc/adjtime"
2023-10-14 16:15:26 -07:00
"d /state/services/podman/volumes 0700 root root - -"
"d /state/services/acme 0755 acme acme - -"
2023-10-14 16:15:26 -07:00
];
fileSystems = {
"/var/lib/acme" = {
device = "/state/services/acme";
options = [ "bind" ];
};
};
2021-11-05 07:06:08 -07:00
environment.systemPackages = local-packages;
# informis.cl-gemini = {
# enable = true;
2022-03-16 09:49:35 -07:00
# hostname = "gemini.fudo.org";
2021-11-05 07:06:08 -07:00
# server-ip = host-ipv4;
2022-03-16 09:49:35 -07:00
# document-root = "/state/gemini/root";
# # textfiles-archive = "${pkgs.textfiles}";
2021-11-05 07:06:08 -07:00
# slynk-port = 4005;
# };
2023-10-14 16:15:26 -07:00
services = {
mastodonContainer.state-directory = "/state/services/mastodon";
authentikContainer.state-directory = "/state/services/authentik";
nextcloudContainer.state-directory = "/state/services/nextcloud";
};
virtualisation = {
arion.backend = "podman-socket";
podman = {
enable = true;
dockerSocket.enable = true;
autoPrune.enable = true;
2023-12-04 17:10:57 -08:00
defaultNetwork.settings.dns_enabled = true;
2023-10-14 16:15:26 -07:00
};
};
2022-06-01 13:57:58 -07:00
fudo = {
2021-11-05 07:06:08 -07:00
hosts.legatus.external-interfaces = [ "extif0" ];
services = {
auth = {
ldap.state-directory = "/state/services/ldap";
kerberos.state-directory = "/state/services/heimdal-kdc";
};
2022-06-01 13:57:58 -07:00
chat = {
state-directory = "/state/services/chat";
external-interface = "extif0";
};
2023-05-16 22:40:08 -07:00
nexus.dns-server.listen-addresses = [ host-ipv4 ];
2021-11-13 10:30:58 -08:00
};
2021-11-05 07:06:08 -07:00
2021-11-13 10:30:58 -08:00
client.dns = {
ipv4 = true;
ipv6 = true;
user = "fudo-client";
external-interface = "extif0";
};
2021-11-05 07:06:08 -07:00
2021-11-13 10:30:58 -08:00
secure-dns-proxy = {
enable = true;
upstream-dns =
[ "https://1.1.1.1/dns-query" "https://1.0.0.1/dns-query" ];
bootstrap-dns = "1.1.1.1";
listen-ips = [ "127.0.0.1" ];
listen-port = 53;
allowed-networks = [ "1.1.1.1/32" "1.0.0.1/32" "localhost" "link-local" ];
};
2021-11-05 07:06:08 -07:00
2021-11-13 10:30:58 -08:00
dns.state-directory = "/state/nsd";
2021-11-05 07:06:08 -07:00
};
}