add ssh and mosh
This commit is contained in:
parent
0efd7a97f4
commit
8e20509b92
|
@ -28,6 +28,7 @@
|
||||||
tools = {
|
tools = {
|
||||||
direnv.enable = true;
|
direnv.enable = true;
|
||||||
alacritty.enable = true;
|
alacritty.enable = true;
|
||||||
|
ssh.enable = true;
|
||||||
# jetbrains.enable = true;
|
# jetbrains.enable = true;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
|
@ -27,6 +27,7 @@
|
||||||
};
|
};
|
||||||
tools = {
|
tools = {
|
||||||
direnv.enable = true;
|
direnv.enable = true;
|
||||||
|
ssh.enable = true;
|
||||||
# jetbrains.enable = true;
|
# jetbrains.enable = true;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
|
@ -10,7 +10,11 @@ in
|
||||||
};
|
};
|
||||||
|
|
||||||
config = mkIf cfg.enable {
|
config = mkIf cfg.enable {
|
||||||
|
home.packages = with pkgs; [
|
||||||
|
mosh
|
||||||
|
];
|
||||||
programs.ssh = {
|
programs.ssh = {
|
||||||
|
enable = true;
|
||||||
extraConfig = ''
|
extraConfig = ''
|
||||||
Host *
|
Host *
|
||||||
HostKeyAlgorithms +ssh-rsa
|
HostKeyAlgorithms +ssh-rsa
|
||||||
|
|
Loading…
Reference in a new issue