nixos/hosts/vm/coturn/default.nix

31 lines
447 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";
};
system.stateVersion = "26.05";
}