1
Fork 0
satellite/home/features/cli/ssh.nix
2023-07-18 23:58:42 +03:00

13 lines
246 B
Nix

{ pkgs, ... }: {
programs.ssh.enable = true;
home.packages = with pkgs; [
mosh # SSH replacement for slow connections
];
# TODO: persistence
# home.persistence = {
# "/persist/home/adrielus".directories = [ ".ssh" ];
# };
}