diff --git a/modules/terminal-life/zsh/default.nix b/modules/terminal-life/zsh/default.nix index 9bb5b28d..d71816d0 100644 --- a/modules/terminal-life/zsh/default.nix +++ b/modules/terminal-life/zsh/default.nix @@ -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; + ''; } diff --git a/users/ben/home.nix b/users/ben/home.nix index 7519383d..a185875d 100644 --- a/users/ben/home.nix +++ b/users/ben/home.nix @@ -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 + "; }