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

16 lines
227 B
Nix

{ config, pkgs, ... }:
{
boot.loader.grub = {
enable = true;
version = 2;
device = "/dev/vda";
};
networking = {
hostName = "coturn";
firewall.enable = false;
};
system.stateVersion = "23.05";
}