1
0
Fork 0
forked from emily/nixfiles
nixfiles-emily/config/hosts/crime/configuration.nix
2024-01-17 15:49:17 +01:00

21 lines
429 B
Nix

{ config, pkgs, ... }: {
imports = [
./nginx.nix
../../common
../../common-lxc.nix
../../common-nginx.nix
../../headless.nix
];
networking = {
hostName = "crime";
firewall.allowedTCPPorts = [ 80 443 ];
firewall.allowedUDPPorts = [ 443 ];
};
systemd.network.networks."98-eth-default" = {
address = [
"2a0f:be01:0:100::1337/128"
];
};
services.jellyfin.enable = true;
}