nix-config/lib/yggdrasil.nix

14 lines
309 B
Nix
Raw Normal View History

{ config, ... }: {
imports = [ ./yggdrasil-service.nix ];
services.yggdrasil = {
enable = true;
package = (import <nixpkgs-unstable> { }).yggdrasil;
openMulticastPort = true;
2019-11-11 17:26:15 +01:00
config.NodeInfo = {
name = config.networking.hostName + ".c3d2";
2019-11-09 14:34:45 +01:00
location = "Dresden";
};
};
}