config/hosts/fra1-a/configuration.nix

100 lines
2.4 KiB
Nix
Raw Normal View History

2023-08-26 07:18:27 +03:00
{
config,
myData,
modulesPath,
...
}: {
imports = [(modulesPath + "/profiles/qemu-guest.nix")];
zfs-root = {
boot = {
enable = true;
devNodes = "/dev/disk/by-id/";
bootDevices = ["scsi-0QEMU_QEMU_HARDDISK_36151096"];
immutable = false;
availableKernelModules = ["xhci_pci" "virtio_pci" "virtio_scsi" "usbhid" "sr_mod" "virtio_gpu"];
removableEfi = true;
kernelParams = ["console=tty"];
sshUnlock = {
enable = true;
authorizedKeys =
(builtins.attrValues myData.people_pubkeys)
++ [
myData.hosts."vno1-oh2.servers.jakst".publicKey
];
};
};
};
mj = {
stateVersion = "23.05";
timeZone = "UTC";
base = {
users.passwd = {
2023-11-27 17:54:44 +02:00
root.hashedPasswordFile = config.age.secrets.root-passwd-hash.path;
motiejus.hashedPasswordFile = config.age.secrets.motiejus-passwd-hash.path;
2023-08-26 07:18:27 +03:00
};
unitstatus = {
enable = true;
email = "motiejus+alerts@jakstys.lt";
};
};
services = {
node_exporter.enable = true;
2023-09-14 06:41:16 +03:00
sshguard.enable = true;
tailscale.enable = true;
2023-08-26 07:18:27 +03:00
postfix = {
enable = true;
saslPasswdPath = config.age.secrets.sasl-passwd.path;
};
deployerbot = {
follower = {
inherit (myData.hosts."vno1-oh2.servers.jakst") publicKey;
2023-10-01 23:14:05 +03:00
2023-08-26 07:18:27 +03:00
enable = true;
2023-09-18 20:49:17 +03:00
sshAllowSubnets = [myData.subnets.tailscale.sshPattern];
2023-08-26 07:18:27 +03:00
uidgid = myData.uidgid.updaterbot-deployee;
};
};
2023-08-26 23:45:03 +03:00
zfsunlock = {
2023-09-12 12:25:30 +03:00
enable = false;
2023-08-26 23:45:03 +03:00
targets."vno1-oh2.servers.jakst" = let
host = myData.hosts."vno1-oh2.servers.jakst";
in {
sshEndpoint = host.publicIP;
pingEndpoint = host.jakstIP;
remotePubkey = host.initrdPubKey;
pwFile = config.age.secrets.zfs-passphrase-vno1-oh2.path;
startAt = "*-*-* *:00/5:00";
};
};
2023-08-26 07:18:27 +03:00
};
};
2023-08-26 23:45:03 +03:00
services.nsd = {
enable = true;
interfaces = ["0.0.0.0" "::"];
zones = {
"jakstys.lt.".data = myData.jakstysLTZone;
2024-01-15 15:08:04 +02:00
"11sync.net.".data = myData.e11syncZone;
2023-08-26 23:45:03 +03:00
};
};
2023-08-26 07:18:27 +03:00
networking = {
hostId = "bed6fa0b";
hostName = "fra1-a";
domain = "servers.jakst";
useDHCP = true;
firewall = {
2023-08-26 23:45:03 +03:00
allowedUDPPorts = [53];
allowedTCPPorts = [22 53];
2023-08-26 07:18:27 +03:00
};
};
nixpkgs.hostPlatform = "aarch64-linux";
}