nix-infra/config/hosts/jellyseerr/configuration.nix

23 lines
382 B
Nix
Raw Normal View History

2024-01-14 00:22:58 +01:00
{ ... }:
{
boot.loader.grub = {
enable = true;
device = "/dev/vda";
};
networking = {
hostName = "jellyseerr";
firewall = {
allowedTCPPorts = [ 80 443 ];
};
extraHosts =
''
10.202.46.101 jellyfin.grzb.de
10.202.100.102 radarr.grzb.de
10.202.100.102 sonarr.grzb.de
'';
};
system.stateVersion = "23.11";
}