diff --git a/lib/yggdrasil.nix b/lib/yggdrasil.nix index ef4429f5..fa33c410 100644 --- a/lib/yggdrasil.nix +++ b/lib/yggdrasil.nix @@ -2,16 +2,14 @@ imports = [ ./../overlays/yggdrasil-package-nix/nixos-module.nix ]; - networking.firewall.extraCommands = '' - ip6tables -A INPUT -s fe80::/10 -j ACCEPT - ''; + networking.firewall.extraCommands = + "ip6tables -A INPUT -s fe80::/10 -j ACCEPT"; services.yggdrasil = { enable = true; - NodeInfo = { + config.NodeInfo = { name = config.networking.hostName + ".c3d2"; - deployment = "nixos"; - location = "Pieschen (Q8945)"; + location = "Dresden"; }; }; }