mirror of
https://github.com/tomasriveral/nixos.git
synced 2026-08-12 18:30:46 +02:00
14 lines
174 B
Nix
14 lines
174 B
Nix
{ config, pkgs, ... }:
|
|
|
|
{
|
|
|
|
programs.ssh = {
|
|
enable = true;
|
|
#agentKeys = [
|
|
# "/home/tomasr/.ssh/id_ed25519"
|
|
#];
|
|
};
|
|
services.ssh-agent.enable = true;
|
|
|
|
}
|