Fix latenight.blue ssh

This commit is contained in:
Benjamin Bädorf 2022-03-24 21:07:11 +01:00
parent a699e42eb7
commit 334daff82e
No known key found for this signature in database
GPG key ID: 4406E80E13CD656C
2 changed files with 21 additions and 2 deletions

View file

@ -95,6 +95,5 @@ in
source ${pkgs.fzf}/share/fzf/completion.zsh
source ${pkgs.git-bug}/share/zsh/site-functions/git-bug
eval "$(direnv hook zsh)"
''
+ builtins.readFile ./fzf.zsh;
'';
}

View file

@ -46,6 +46,22 @@ in
user = "web7dgkba_c9em8f";
port = 2244;
};
"latenight.blue" = {
hostname = "latenight.blue";
user = "lnb";
extraOptions = {
MACs = "hmac-sha2-512-etm@openssh.com";
};
};
"blacktea.io" = {
hostname = "latenight.blue";
user = "lnb";
extraOptions = {
MACs = "hmac-sha2-512-etm@openssh.com";
};
};
};
};
@ -78,4 +94,8 @@ in
owner = "mopidy";
};
services.mopidy.extraConfigFiles = [ "/run/secrets/mopidy.conf" ];
programs.ssh.extraConfig = "
PubkeyAcceptedKeyTypes +ssh-rsa
";
}