27 lines
523 B
Nix
Executable File
27 lines
523 B
Nix
Executable File
{ config, pkgs, ... }:
|
|
|
|
{
|
|
imports = [ ../../common ./minecraft.nix ];
|
|
|
|
users.motd = builtins.readFile ./motd;
|
|
|
|
networking.hostName = "logos";
|
|
networking.hostId = "aeace675";
|
|
|
|
services.nginx.enable = true;
|
|
|
|
services.yggdrasil = {
|
|
enable = true;
|
|
persistentKeys = true;
|
|
openMulticastPort = true;
|
|
config = {
|
|
IfName = "yggdrasil0";
|
|
Peers = [
|
|
"tls://ca1.servers.devices.cwinfo.net:58226"
|
|
"tls://192.99.145.61:58226"
|
|
"tcp://kusoneko.moe:9002"
|
|
];
|
|
};
|
|
};
|
|
}
|