forked from emily/nixfiles
31 lines
754 B
Nix
31 lines
754 B
Nix
{ config, pkgs, ... }: {
|
|
imports = [
|
|
../../common
|
|
../../profiles/headless.nix
|
|
../../profiles/kartoffel.nix
|
|
../../profiles/lxc.nix
|
|
../../services/nginx.nix
|
|
./nginx.nix
|
|
];
|
|
networking = {
|
|
hostName = "crime";
|
|
firewall.allowedTCPPorts = [ 80 443 ];
|
|
firewall.allowedUDPPorts = [ 443 ];
|
|
};
|
|
systemd.network.networks."98-eth-default" = {
|
|
address = [
|
|
"2a0f:be01:0:100::1337/128"
|
|
"2a0f:be01:0:100::1338/128"
|
|
];
|
|
};
|
|
|
|
security.acme.certs = {
|
|
"fentanyl.trade" = { extraDomainNames = [ "frotti.ng" "watch.kyouma.net" ]; };
|
|
"crime.kyouma.net" = {};
|
|
};
|
|
|
|
services.jellyfin.enable = true;
|
|
services.sonarr.enable = true;
|
|
services.radarr.enable = true;
|
|
services.prowlarr.enable = true;
|
|
}
|