Files
nix/profiles/apollo/home/ssh/default.nix

10 lines
195 B
Nix
Raw Normal View History

{ config, flakesPath, ... }: {
2025-04-25 23:10:55 +08:00
programs.ssh = {
enable = true;
};
home.file.".ssh/config" = {
source = config.home-libs.mkOutOfStoreSymlink "profiles/apollo/hm/ssh/config";
2025-04-25 23:10:55 +08:00
};
}