config/hosts/fwminex/configuration.nix

391 lines
9.3 KiB
Nix
Raw Normal View History

2024-07-22 21:59:59 +03:00
{
pkgs,
2024-07-23 22:01:40 +03:00
config,
2024-08-02 14:01:04 +03:00
myData,
2024-07-22 21:59:59 +03:00
...
2024-07-29 15:39:54 +03:00
}:
let
2024-07-16 05:40:40 +03:00
nvme = "/dev/disk/by-id/nvme-Samsung_SSD_970_EVO_Plus_2TB_S6P1NS0TA01331A_1";
2024-07-29 15:39:54 +03:00
in
{
2024-04-12 22:13:34 +03:00
imports = [
2024-07-16 05:40:40 +03:00
../../modules
../../modules/profiles/btrfs
2024-04-12 22:13:34 +03:00
];
2023-11-28 22:57:58 +02:00
boot = {
2024-07-29 15:39:54 +03:00
kernelModules = [ "kvm-intel" ];
2023-11-28 22:57:58 +02:00
loader.systemd-boot.enable = true;
2024-07-16 05:40:40 +03:00
initrd = {
2024-07-29 15:39:54 +03:00
kernelModules = [ "usb_storage" ];
availableKernelModules = [
"xhci_pci"
"thunderbolt"
"nvme"
"usbhid"
"tpm_tis"
];
2024-07-23 22:15:02 +03:00
systemd.enableTpm2 = true;
2024-07-16 05:40:40 +03:00
luks.devices = {
luksroot = {
device = "${nvme}-part3";
allowDiscards = true;
#crypttabExtraOpts = ["tpm2-device=auto"];
keyFileOffset = 9728;
keyFileSize = 512;
keyFile = "/dev/sda";
2024-07-16 05:40:40 +03:00
};
};
2023-11-28 22:57:58 +02:00
};
};
2024-07-16 05:40:40 +03:00
security.tpm2.enable = true;
swapDevices = [
{
device = "${nvme}-part2";
randomEncryption.enable = true;
}
];
2023-11-28 22:57:58 +02:00
fileSystems = {
"/" = {
2024-07-16 05:40:40 +03:00
device = "/dev/mapper/luksroot";
fsType = "btrfs";
2024-07-29 15:39:54 +03:00
options = [ "compress=zstd" ];
2023-11-28 22:57:58 +02:00
};
"/boot" = {
2024-07-16 05:40:40 +03:00
device = "${nvme}-part1";
2023-11-28 22:57:58 +02:00
fsType = "vfat";
};
2023-09-13 12:17:43 +03:00
};
2023-09-14 12:40:16 +03:00
hardware.cpu.intel.updateMicrocode = true;
nixpkgs.hostPlatform = "x86_64-linux";
2024-07-31 10:43:51 +03:00
systemd.tmpfiles.rules = [ "d /var/www 0755 motiejus users -" ];
2023-09-14 15:26:16 +03:00
2024-07-22 21:59:59 +03:00
services = {
pcscd.enable = true;
acpid.enable = true;
fwupd.enable = true;
2024-07-23 22:04:08 +03:00
logind = {
lidSwitch = "ignore";
powerKey = "suspend";
powerKeyLongPress = "poweroff";
};
2024-08-02 14:31:24 +03:00
caddy = {
enable = true;
globalConfig = ''
2024-08-03 06:14:17 +03:00
servers {
metrics
}
2024-08-02 14:31:24 +03:00
auto_https off
'';
};
2024-08-02 22:33:44 +03:00
2024-08-03 06:18:52 +03:00
nsd = {
enable = true;
interfaces = [
"0.0.0.0"
"::"
];
zones = {
"jakstys.lt.".data = myData.jakstysLTZone;
"11sync.net.".data = myData.e11syncZone;
};
};
minidlna = {
enable = true;
openFirewall = true;
settings = {
media_dir = [ "/home/motiejus/video" ];
friendly_name = "vno1-oh2";
inotify = "yes";
};
};
2024-08-02 22:33:44 +03:00
prometheus = {
2024-08-03 05:43:54 +03:00
enable = true;
2024-08-02 22:33:44 +03:00
port = myData.ports.prometheus;
retentionTime = "1y";
globalConfig = {
2024-08-03 05:44:59 +03:00
scrape_interval = "10s";
2024-08-02 22:33:44 +03:00
evaluation_interval = "1m";
};
scrapeConfigs =
let
port = builtins.toString myData.ports.exporters.node;
in
[
{
job_name = "prometheus";
static_configs = [ { targets = [ "127.0.0.1:${toString myData.ports.prometheus}" ]; } ];
}
{
job_name = "caddy";
static_configs = [ { targets = [ "127.0.0.1:${toString myData.ports.exporters.caddy}" ]; } ];
}
{
job_name = "${config.networking.hostName}.${config.networking.domain}";
static_configs = [ { targets = [ "127.0.0.1:${port}" ]; } ];
}
{
job_name = "fra1-b.servers.jakst";
static_configs = [ { targets = [ "${myData.hosts."fra1-b.servers.jakst".jakstIP}:${port}" ]; } ];
}
{
job_name = "vno3-rp3b.servers.jakst";
static_configs = [ { targets = [ "${myData.hosts."vno3-rp3b.servers.jakst".jakstIP}:${port}" ]; } ];
}
{
2024-08-03 05:43:54 +03:00
job_name = "vno1-oh2.servers.jakst";
static_configs = [ { targets = [ "${myData.hosts."vno1-oh2.servers.jakst".jakstIP}:${port}" ]; } ];
2024-08-02 22:33:44 +03:00
}
{
job_name = "mtworx.motiejus.jakst";
static_configs = [ { targets = [ "${myData.hosts."mtworx.motiejus.jakst".jakstIP}:${port}" ]; } ];
}
{
job_name = "vno1-vinc.vincentas.jakst";
static_configs = [ { targets = [ "${myData.hosts."vno1-vinc.vincentas.jakst".jakstIP}:9100" ]; } ];
}
];
};
2024-08-03 05:57:15 +03:00
2024-07-22 21:59:59 +03:00
};
2023-09-13 12:17:43 +03:00
mj = {
2024-07-16 05:40:40 +03:00
stateVersion = "24.05";
2023-09-13 12:17:43 +03:00
timeZone = "Europe/Vilnius";
username = "motiejus";
2023-09-13 12:17:43 +03:00
2024-07-31 09:40:05 +03:00
base = {
users = {
enable = true;
root.hashedPasswordFile = config.age.secrets.root-server-passwd-hash.path;
user.hashedPasswordFile = config.age.secrets.motiejus-server-passwd-hash.path;
};
unitstatus = {
enable = true;
email = "motiejus+alerts@jakstys.lt";
};
2023-09-13 12:17:43 +03:00
};
services = {
2024-08-03 06:53:37 +03:00
sshguard.enable = true;
2024-08-02 14:31:24 +03:00
gitea.enable = true;
2024-08-03 06:33:09 +03:00
hass.enable = true;
2024-08-03 06:53:37 +03:00
vaultwarden = {
enable = true;
port = myData.ports.vaultwarden;
secretsEnvFile = config.age.secrets.vaultwarden-secrets-env.path;
};
2024-08-02 14:31:24 +03:00
2024-08-03 05:57:15 +03:00
grafana = {
enable = true;
port = myData.ports.grafana;
oidcSecretFile = config.age.secrets.grafana-oidc.path;
};
2023-11-15 00:29:22 +02:00
tailscale = {
enable = true;
2024-07-16 05:40:40 +03:00
verboseLogs = false;
2023-11-15 00:29:22 +02:00
};
2024-08-02 14:01:04 +03:00
headscale = {
enable = true;
clientOidcPath = config.age.secrets.headscale-client-oidc.path;
subnetCIDR = myData.subnets.tailscale.cidr;
};
2024-08-02 16:03:09 +03:00
photoprism = {
enable = true;
uidgid = myData.uidgid.photoprism;
2024-08-02 16:36:45 +03:00
paths = {
"M-Camera" = "/home/motiejus/annex2/M-Active";
"Pictures" = "/home/motiejus/annex2/Pictures";
};
2024-08-02 16:03:09 +03:00
passwordFile = config.age.secrets.photoprism-admin-passwd.path;
};
2024-07-31 09:40:05 +03:00
btrfsborg = {
enable = true;
passwordPath = config.age.secrets.borgbackup-password.path;
sshKeyPath = "/etc/ssh/ssh_host_ed25519_key";
2024-07-31 11:25:28 +03:00
dirs =
builtins.concatMap
2024-07-31 11:27:41 +03:00
(
host:
let
prefix = "${host}:${config.networking.hostName}.${config.networking.domain}";
in
[
2024-08-02 14:17:03 +03:00
{
subvolume = "/var/lib";
repo = "${prefix}-var_lib";
2024-08-02 15:00:09 +03:00
paths = [
2024-08-03 06:33:09 +03:00
"hass"
2024-08-02 15:00:09 +03:00
"gitea"
2024-08-03 06:33:09 +03:00
"grafana"
"headscale"
2024-08-03 06:53:37 +03:00
"bitwarden_rs"
2024-08-02 16:20:46 +03:00
"private/photoprism"
2024-08-02 15:00:09 +03:00
];
patterns = [ "- gitea/data/repo-archive/" ];
2024-08-02 14:17:03 +03:00
backup_at = "*-*-* 01:00:01 UTC";
}
2024-07-31 11:27:41 +03:00
{
subvolume = "/home";
repo = "${prefix}-home-motiejus-annex2";
paths = [ "motiejus/annex2" ];
backup_at = "*-*-* 02:30:01 UTC";
}
]
)
2024-07-31 11:25:28 +03:00
[
"zh2769@zh2769.rsync.net"
"borgstor@${myData.hosts."vno3-rp3b.servers.jakst".jakstIP}"
];
2024-07-31 09:40:05 +03:00
};
2024-07-29 16:44:35 +03:00
btrfssnapshot = {
enable = true;
subvolumes = [
2024-07-29 17:00:55 +03:00
{
subvolume = "/home";
label = "hourly";
keep = 24;
refreshInterval = "*:00:00";
}
{
subvolume = "/home";
label = "nightly";
keep = 7;
refreshInterval = "daily UTC";
}
2024-07-29 16:44:35 +03:00
{
subvolume = "/var/lib";
label = "hourly";
keep = 24;
refreshInterval = "*:00:00";
}
{
subvolume = "/var/lib";
label = "nightly";
keep = 7;
2024-07-29 16:54:48 +03:00
refreshInterval = "daily UTC";
2024-07-29 16:44:35 +03:00
}
];
};
2024-07-30 22:46:29 +03:00
syncthing = {
enable = true;
dataDir = "/home/motiejus/";
user = "motiejus";
group = "users";
};
2024-07-29 15:39:54 +03:00
remote-builder.client =
let
2024-07-31 00:23:44 +03:00
host = myData.hosts."fra1-b.servers.jakst";
2024-07-29 15:39:54 +03:00
in
{
enable = true;
inherit (host) system supportedFeatures;
hostName = host.jakstIP;
sshKey = "/etc/ssh/ssh_host_ed25519_key";
};
2024-07-16 05:40:40 +03:00
2023-09-18 19:29:27 +03:00
node_exporter = {
enable = true;
2024-07-29 15:39:54 +03:00
extraSubnets = [ myData.subnets.vno1.cidr ];
2023-09-18 19:29:27 +03:00
};
2023-09-13 12:17:43 +03:00
deployerbot = {
main = {
enable = true;
uidgid = myData.uidgid.updaterbot-deployer;
repo = "git@git.jakstys.lt:motiejus/config";
deployDerivations = [
".#fwminex"
".#vno1-oh2"
2024-07-31 00:23:44 +03:00
".#fra1-b"
".#vno3-rp3b"
];
deployIfPresent = [
{
derivationTarget = ".#mtworx";
pingTarget = myData.hosts."mtworx.motiejus.jakst".jakstIP;
}
];
};
2023-09-13 12:17:43 +03:00
follower = {
2024-07-31 09:19:13 +03:00
publicKeys = [ myData.hosts."fwminex.servers.jakst".publicKey ];
2023-10-01 23:14:05 +03:00
2023-09-13 12:17:43 +03:00
enable = true;
uidgid = myData.uidgid.updaterbot-deployee;
2024-07-29 15:39:54 +03:00
sshAllowSubnets = with myData.subnets; [ tailscale.sshPattern ];
2023-09-13 12:17:43 +03:00
};
};
2024-07-23 22:01:40 +03:00
postfix = {
enable = true;
saslPasswdPath = config.age.secrets.sasl-passwd.path;
};
2024-08-02 22:33:44 +03:00
friendlyport.ports = [
{
subnets = [ myData.subnets.tailscale.cidr ];
tcp = with myData.ports; [
80
443
prometheus
#soju
#soju-ws
];
}
2024-08-03 06:03:55 +03:00
2024-08-02 22:33:44 +03:00
];
2023-09-13 12:17:43 +03:00
};
};
2024-07-22 21:59:59 +03:00
environment = {
systemPackages = with pkgs; [
2024-07-28 21:43:19 +03:00
acpi
2024-08-03 06:18:52 +03:00
yt-dlp
ffmpeg
imapsync
2024-07-22 21:59:59 +03:00
age-plugin-yubikey
];
};
2023-09-13 12:17:43 +03:00
networking = {
2024-07-16 05:40:40 +03:00
hostId = "a6b19da0";
2023-09-13 12:17:43 +03:00
hostName = "fwminex";
2024-07-31 11:29:08 +03:00
domain = "servers.jakst";
2024-08-02 14:47:01 +03:00
firewall = {
rejectPackets = true;
allowedUDPPorts = [
53
80
443
];
allowedTCPPorts = [
53
80
443
config.services.syncthing.relay.port
config.services.syncthing.relay.statusPort
];
};
2023-09-13 12:17:43 +03:00
};
}