nix-config/hosts/staging/configuration.nix

94 lines
2.9 KiB
Nix
Raw Normal View History

2022-05-14 21:48:51 +02:00
# Edit this configuration file to define what should be installed on
# your system. Help is available in the configuration.nix(5) man page
# and in the NixOS manual (accessible by running nixos-help).
{ config, pkgs, ... }:
2022-05-14 21:48:51 +02:00
{
2022-05-14 22:47:54 +02:00
microvm = {
vcpu = 4;
mem = 4096;
hypervisor = "cloud-hypervisor";
socket = "${config.networking.hostName}.socket";
2022-05-15 02:04:01 +02:00
2022-05-28 21:24:15 +02:00
interfaces = [{
2022-05-15 02:04:01 +02:00
type = "tap";
2022-06-16 21:52:50 +02:00
id = "serv-dvb-stag";
2022-05-15 02:04:01 +02:00
mac = "00:de:5b:f9:e2:3d";
2022-05-28 21:24:15 +02:00
}];
2022-05-15 02:04:01 +02:00
2022-05-28 21:24:15 +02:00
shares = [{
2022-05-15 02:04:01 +02:00
source = "/nix/store";
mountPoint = "/nix/.ro-store";
tag = "store";
proto = "virtiofs";
socket = "store.socket";
2022-05-28 21:24:15 +02:00
}
{
source = "/var/lib/microvms/staging-data-hoarder/etc";
mountPoint = "/etc";
tag = "etc";
proto = "virtiofs";
socket = "etc.socket";
}
{
source = "/var/lib/microvms/staging-data-hoarder/var";
mountPoint = "/var";
tag = "var";
proto = "virtiofs";
socket = "var.socket";
}];
2022-05-14 22:47:54 +02:00
};
2022-05-14 21:48:51 +02:00
networking.hostName = "staging-data-hoarder"; # Define your hostname.
# networking.wireless.enable = true; # Enables wireless support via wpa_supplicant.
# Set your time zone.
time.timeZone = "Europe/Berlin";
2022-05-15 00:43:24 +02:00
networking.interfaces.eth0 = {
2022-05-14 21:48:51 +02:00
useDHCP = false;
2022-05-28 21:24:15 +02:00
ipv4.addresses = [{
2022-05-15 00:43:24 +02:00
address = "172.20.73.64";
prefixLength = 25;
2022-05-28 21:24:15 +02:00
}];
2022-05-14 21:48:51 +02:00
};
2022-05-15 00:43:24 +02:00
networking.defaultGateway = "172.20.73.1";
networking.nameservers = [ "172.20.73.8" "9.9.9.9" ];
2022-05-14 21:48:51 +02:00
2022-05-31 21:29:48 +02:00
sops.defaultSopsFile = ../../secrets/data-hoarder-staging/secrets.yaml;
2022-05-14 21:48:51 +02:00
# networking.proxy.default = "http://user:password@proxy:port/";
# networking.proxy.noProxy = "127.0.0.1,localhost,internal.domain";
# Open ports in the firewall.
2022-05-27 23:49:08 +02:00
networking.firewall.allowedTCPPorts = [ 80 443 22 51820 ];
networking.firewall.trustedInterfaces = [ "wg-dvb" ];
2022-05-14 21:48:51 +02:00
networking.firewall.allowedUDPPorts = [ 22 51820 ];
# Or disable the firewall altogether.
networking.firewall.enable = true;
dump-dvb.domain = "staging.dvb.solutions";
2022-05-15 18:31:48 +02:00
networking.wg-quick.interfaces.wg-dvb = {
2022-05-28 21:24:15 +02:00
address = [ "10.13.37.5/32" ];
2022-05-31 21:33:03 +02:00
privateKeyFile = config.sops.secrets.wg-seckey.path;
2022-05-28 21:24:15 +02:00
postUp = '' ${pkgs.iputils}/bin/ping -c 10 10.13.37.1 || true '';
2022-05-15 18:31:48 +02:00
peers = [
2022-05-28 21:24:15 +02:00
{
publicKey = "WDvCObJ0WgCCZ0ORV2q4sdXblBd8pOPZBmeWr97yphY=";
2022-05-15 18:31:48 +02:00
allowedIPs = [ "10.13.37.0/24" ];
endpoint = "academicstrokes.com:51820";
2022-05-28 21:24:15 +02:00
persistentKeepalive = 25;
2022-05-15 18:31:48 +02:00
}
2022-05-28 21:24:15 +02:00
];
};
2022-05-15 18:31:48 +02:00
2022-05-14 21:48:51 +02:00
# This value determines the NixOS release from which the default
# settings for stateful data, like file locations and database versions
# on your system were taken. Its perfectly fine and recommended to leave
# this value at the release version of the first install of this system.
# Before changing this value read the documentation for this option
# (e.g. man configuration.nix or on https://nixos.org/nixos/options.html).
system.stateVersion = "21.11"; # Did you read the comment?
}