mirror of
https://github.com/srid/nixos-config.git
synced 2026-01-10 18:22:35 +08:00
17 lines
295 B
Nix
17 lines
295 B
Nix
{ pkgs, lib, ... }:
|
|
{
|
|
programs.ssh = {
|
|
enable = true;
|
|
|
|
addKeysToAgent = "yes";
|
|
|
|
# Note: More defined in juspay.nix
|
|
matchBlocks = {
|
|
pureintent = {
|
|
forwardAgent = true;
|
|
};
|
|
};
|
|
};
|
|
|
|
services.ssh-agent = lib.mkIf pkgs.stdenv.isLinux { enable = true; };
|
|
}
|