nix-infra/hosts/jellyfin/configuration.nix
2024-11-20 05:46:39 +01:00

18 lines
250 B
Nix

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