From e2fcf2d39ef6bd3b7123172798c0ffb7ab1ac869 Mon Sep 17 00:00:00 2001 From: Emery Hemingway Date: Sat, 9 Nov 2019 14:34:45 +0100 Subject: [PATCH] Use yggdrasil from nixpkgs --- lib/yggdrasil.nix | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) 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"; }; }; }