nixos-config/features/network/sshguard.nix

19 lines
332 B
Nix
Raw Normal View History

{ pkgs, config, lib, assets, ... }:
with lib;
with types;
{
options.features.network.sshguard = {
enable = mkOption {
type = bool;
default = false;
};
};
config = mkIf config.features.network.sshguard.enable {
environment.systemPackages = [ pkgs.ipset ];
services.sshguard.enable = true;
};
}