Added two new hosts

This commit is contained in:
2025-04-24 16:10:39 +02:00
parent 7f42d033db
commit b9d4c49d43
5 changed files with 254 additions and 4 deletions

View File

@@ -1,7 +1,5 @@
{ config, lib, ... }:
with lib;
let
cfg = config.settings.hardware.firewall;
in {
@@ -14,9 +12,9 @@ in {
};
};
config = mkIf cfg.enable {
config = {
networking.firewall = {
enable = true;
enable = cfg.enable;
allowedTCPPorts = [ ];
allowedUDPPorts = [ ];
};