mirror of
https://github.com/foo-dogsquared/nixos-config.git
synced 2025-01-31 16:57:55 +00:00
23 lines
446 B
Nix
23 lines
446 B
Nix
|
{ config, lib, pkgs, ... }:
|
||
|
|
||
|
let
|
||
|
hostCfg = config.hosts.plover;
|
||
|
cfg = hostCfg.services.firewall;
|
||
|
in
|
||
|
{
|
||
|
options.hosts.plover.services.firewall.enable = lib.mkEnableOption "firewall setup";
|
||
|
|
||
|
config = lib.mkIf cfg.enable {
|
||
|
networking = {
|
||
|
nftables.enable = true;
|
||
|
domain = "foodogsquared.one";
|
||
|
firewall = {
|
||
|
enable = true;
|
||
|
allowedTCPPorts = [
|
||
|
22 # Secure Shells.
|
||
|
];
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
}
|