aboutsummaryrefslogtreecommitdiffstats
path: root/hosts/darkstar
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--hosts/darkstar/services.nix8
1 files changed, 6 insertions, 2 deletions
diff --git a/hosts/darkstar/services.nix b/hosts/darkstar/services.nix
index 323080c..16a945d 100644
--- a/hosts/darkstar/services.nix
+++ b/hosts/darkstar/services.nix
@@ -2,10 +2,14 @@
networking.nftables.tables.ntp = {
content = ''
define int_if = enp116s0
- iifname $int_if udp dport ntp accept # 123
+
+ chain input {
+ type filter hook input priority filter - 1; policy accept;
+ iifname $int_if udp dport ntp accept # 123
+ }
'';
enable = true;
- family = inet;
+ family = "inet";
};
services.chrony = {