1
Fork 0
satellite/home/features/cli/ssh.nix

13 lines
246 B
Nix
Raw Normal View History

2023-07-18 22:58:42 +02:00
{ pkgs, ... }: {
2023-01-10 02:38:06 +01:00
programs.ssh.enable = true;
2023-07-18 22:58:42 +02:00
home.packages = with pkgs; [
mosh # SSH replacement for slow connections
];
# TODO: persistence
2023-01-10 02:38:06 +01:00
# home.persistence = {
# "/persist/home/adrielus".directories = [ ".ssh" ];
# };
}