dot_testing/home/ssh/default.nix
2023-12-21 15:26:09 -06:00

12 lines
145 B
Nix

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