From 94c2a2de5d61cc0133b36c5f60150eddfbc45aa7 Mon Sep 17 00:00:00 2001 From: Rouven Seifert Date: Sun, 7 Jan 2024 01:22:42 +0100 Subject: [PATCH] fix integer formatting --- modules/bacula.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/bacula.nix b/modules/bacula.nix index 59815a4..916742f 100644 --- a/modules/bacula.nix +++ b/modules/bacula.nix @@ -7,7 +7,7 @@ }; networking.firewall = { extraInputRules = '' - ip saddr 10.144.0.11 tcp dport ${config.services.bacula-fd.port} accept comment "Only allow Bacula access from Abel" + ip saddr 10.144.0.11 tcp dport ${builtins.toString config.services.bacula-fd.port} accept comment "Only allow Bacula access from Abel" ''; }; services.bacula-fd = {