nixos/hosts/vm/coturn/default.nix

33 lines
474 B
Nix

{ ... }:
{
imports = [
./coturn.nix
./livekit.nix
./hardware-configuration.nix
];
networking.hostName = "coturn";
boot.loader.grub.devices = [ "/dev/sda" ];
crans = {
enable = true;
networking = {
id = 119;
srv = {
enable = true;
ipv4 = "185.230.79.19";
};
};
services.acme.enable = true;
resticClient.when = "06:07";
};
services.nginx.enable = true;
system.stateVersion = "26.05";
}