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

18 lines
255 B
Nix

{ ... }:
{
boot.loader.grub = {
enable = true;
device = "/dev/vda";
};
networking = {
hostName = "jellyfin";
firewall = {
enable = true;
allowedTCPPorts = [ 80 443 8443 ];
};
};
system.stateVersion = "23.05";
}