1
1
Fork 0
nixos/options/custom/programs/ssh.nix

28 lines
523 B
Nix
Raw Normal View History

{
config,
lib,
...
}:
with lib; let
cfg = config.custom.programs.ssh;
in {
options.custom.programs.ssh.enable = mkOption {default = false;};
config = mkIf cfg.enable {
# Disable prompt for new hosts
# MitM warning is still active
programs.ssh.extraConfig = ''
StrictHostKeyChecking no
'';
home-manager.users.${config.custom.username}.programs.ssh = {
enable = true;
extraConfig = ''
Host *
IdentityAgent ~/.1password/agent.sock
'';
};
};
}