Use yggdrasil from nixpkgs

This commit is contained in:
Ehmry - 2019-11-09 14:34:45 +01:00
parent 1e42d3ae7e
commit e2fcf2d39e
1 changed files with 4 additions and 6 deletions

View File

@ -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";
};
};
}