forked from the-distro/infra
raito
e3f3c87c0d
Includes: - Raito VM module - Raito proxy aware NGINX module - Base server module - Sysadmin module - New SSH keys - Netbox module Signed-off-by: Raito Bezarius <masterancpp@gmail.com>
51 lines
1.2 KiB
Nix
51 lines
1.2 KiB
Nix
{ config, lib, ... }:
|
|
|
|
{
|
|
boot.isContainer = true;
|
|
|
|
# XXX: There's currently no way to remove the "problematic" entries (trying
|
|
# to override the /proc, /sys, /dev, ... mounts from systemd-nspawn) while
|
|
# also keeping the entry for the wrappers dir.
|
|
boot.specialFileSystems = lib.mkForce {
|
|
"/run/wrappers" = {
|
|
fsType = "tmpfs";
|
|
options = [ "nodev" "mode=755" "size=${config.security.wrapperDirSize}" ];
|
|
};
|
|
};
|
|
|
|
boot.loader.initScript.enable = true;
|
|
|
|
networking = {
|
|
useNetworkd = true;
|
|
useHostResolvConf = false;
|
|
|
|
hostName = "bagel-box";
|
|
nameservers = [ "2001:4860:4860::8844" ];
|
|
|
|
interfaces.host0.ipv6.addresses = [
|
|
{ address = "2001:bc8:38ee:100:100::1"; prefixLength = 64; }
|
|
];
|
|
|
|
interfaces.host1.ipv4.addresses = [
|
|
{ address = "172.16.100.2"; prefixLength = 24; }
|
|
];
|
|
defaultGateway = { address = "172.16.100.1"; interface = "host1"; };
|
|
|
|
firewall.allowPing = true;
|
|
};
|
|
|
|
bagel.services = {
|
|
postgres.enable = true;
|
|
|
|
hydra.enable = true;
|
|
hydra.dbi = "dbi:Pg:dbname=hydra;user=hydra";
|
|
};
|
|
|
|
security.acme.acceptTerms = true;
|
|
security.acme.defaults.email = "bagel@delroth.net";
|
|
|
|
services.openssh.enable = true;
|
|
|
|
deployment.targetHost = "bagel-box.delroth.net";
|
|
}
|