8 lines
172 B
Nix
8 lines
172 B
Nix
![]() |
{lib, ...}: let
|
||
|
inherit (lib) mkEnableOption mkOption types;
|
||
|
in {
|
||
|
options.modules.system.networking = {
|
||
|
nftbles.enable = mkEnableOption "Nftables firewall";
|
||
|
};
|
||
|
}
|