mirror of
https://github.com/SebastianStork/nixos-config.git
synced 2026-01-21 16:21:34 +01:00
15 lines
274 B
Nix
15 lines
274 B
Nix
{
|
|
config,
|
|
lib,
|
|
...
|
|
}: {
|
|
options.myConfig.ssh-client.enable = lib.mkEnableOption "";
|
|
|
|
config = lib.mkIf config.myConfig.ssh-client.enable {
|
|
programs.ssh = {
|
|
enable = true;
|
|
};
|
|
|
|
services.ssh-agent.enable = true;
|
|
};
|
|
}
|