NixOS-Config/home-manager/shared/ssh/default.nix

9 lines
167 B
Nix

{...}: {
# TODO: make this dynamic instead of hard coded
home.file."config" = {
source = ./config;
target = ".config/ssh/config";
force = true;
};
}