summaryrefslogtreecommitdiff
path: root/os/srv/firewall.nix
diff options
context:
space:
mode:
authoradikro <adikro@disroot.org>2026-06-21 22:37:42 +0200
committeradikro <adikro@disroot.org>2026-06-21 22:37:42 +0200
commit30f34740891096471b5663704fbbd9bf67ebe885 (patch)
treee454527368c67be4aeb81bc15ac3a0b6cc424f67 /os/srv/firewall.nix
parent630da5d0639cada53e26a03f579df0a7bac3b17a (diff)
updates and pinning omnisearch
Diffstat (limited to 'os/srv/firewall.nix')
-rw-r--r--os/srv/firewall.nix16
1 files changed, 0 insertions, 16 deletions
diff --git a/os/srv/firewall.nix b/os/srv/firewall.nix
deleted file mode 100644
index bc06ffe..0000000
--- a/os/srv/firewall.nix
+++ /dev/null
@@ -1,16 +0,0 @@
-{ config, lib, ... }:
-let
- cfg = config.os.srv.firewall;
-in
-{
- options.os.srv.firewall = {
- enable = lib.mkEnableOption "enables the nixos firewall and nftables";
- };
-
- config = lib.mkIf cfg.enable {
- networking = {
- firewall.enable = true;
- nftables.enable = true;
- };
- };
-}