Instead of doing `inherit (lib) <something>``, all inherits now use `inherit (lib.<subsystem>) <something>`, which is much nicer.
7 lines
165 B
Nix
7 lines
165 B
Nix
{lib, ...}: let
|
|
inherit (lib.options) mkEnableOption;
|
|
in {
|
|
options.modules.system.networking = {
|
|
nftbles.enable = mkEnableOption "Nftables firewall";
|
|
};
|
|
}
|