mochi/nixos/home/modules/security/ssh/default.nix

22 lines
385 B
Nix
Raw Normal View History

2024-06-20 08:59:56 -05:00
{ 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;
# addKeysToAgent = "yes";
};
};
}