mochi/nixos/home/modules/security/ssh/default.nix
2024-12-27 21:30:25 -06:00

21 lines
353 B
Nix

{ config, lib, ... }:
with lib;
let
cfg = config.myHome.security.ssh;
in
{
options.myHome.security.ssh = {
enable = mkEnableOption "ssh";
matchBlocks = mkOption {
type = types.attrs;
default = { };
};
};
config = mkIf cfg.enable {
programs.ssh = {
inherit (cfg) matchBlocks;
enable = true;
};
};
}