nix-infra/hosts/coturn/configuration.nix

16 lines
227 B
Nix
Raw Normal View History

2023-07-10 15:30:51 +02:00
{ config, pkgs, ... }:
{
boot.loader.grub = {
enable = true;
version = 2;
device = "/dev/vda";
};
networking = {
hostName = "coturn";
firewall.enable = false;
};
system.stateVersion = "23.05";
}