dot_testing/home/ssh/default.nix

12 lines
145 B
Nix

{ lib, config, pkgs, home, ... }:
{
programs.ssh.enable = true;
home.file = {
".ssh/config" = {
source = ./config;
};
};
}