From 18f81ea61c211f96f9029be34fe4b4a01b7c86d8 Mon Sep 17 00:00:00 2001 From: foxora Date: Thu, 5 Mar 2026 10:46:41 +0000 Subject: [PATCH 1/2] lyra config: iptables -> nftables --- hosts/lyra/default.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/hosts/lyra/default.nix b/hosts/lyra/default.nix index e537159..28ea912 100644 --- a/hosts/lyra/default.nix +++ b/hosts/lyra/default.nix @@ -22,11 +22,13 @@ networking = { networkmanager.enable = true; + nftables.enable = true; firewall = { allowedTCPPorts = [ 2222 ]; + allowedUDPPorts = []; }; }; From e29232d96ce29d3f00af1bc0271297c1672ad1d3 Mon Sep 17 00:00:00 2001 From: foxora Date: Thu, 5 Mar 2026 10:47:47 +0000 Subject: [PATCH 2/2] arcturus config: removed systemd debug log level --- hosts/arcturus/default.nix | 4 ---- 1 file changed, 4 deletions(-) diff --git a/hosts/arcturus/default.nix b/hosts/arcturus/default.nix index 458a92c..dde69a2 100644 --- a/hosts/arcturus/default.nix +++ b/hosts/arcturus/default.nix @@ -34,10 +34,6 @@ }; }; - systemd.services.systemd-networkd.environment = { - SYSTEMD_LOG_LEVEL = "debug"; - }; - systemd.network = { enable = true;