move to a version of mosh that supports alacritty

This commit is contained in:
Charlotte 🦝 Delenk 2022-03-04 20:29:00 +01:00
parent 6b896c73a5
commit 7005e5fb03
Signed by: darkkirb
GPG key ID: AB2BD8DAF2E37122
2 changed files with 15 additions and 2 deletions

View file

@ -14,8 +14,6 @@ desktop: { pkgs, ... }: {
initExtra = ''
[[ ! -f ~/.p10k.zsh ]] || source ~/.p10k.zsh
export TERM=xterm-256color # for mosh
if [[ ! $TMUX ]]; then
# figure out the session to use
SESSION_NAME="$USER"

View file

@ -88,6 +88,21 @@ in
];
});
plover.dev = plover;
mosh = prev.mosh.overrideAttrs (old: {
patches = [
"${nixpkgs}/pkgs/tools/networking/mosh/ssh_path.patch"
"${nixpkgs}/pkgs/tools/networking/mosh/mosh-client_path.patch"
"${nixpkgs}/pkgs/tools/networking/mosh/utempter_path.patch"
"${nixpkgs}/pkgs/tools/networking/mosh/bash_completion_datadir.patch"
];
version = "2022-02-04";
src = pkgs.fetchFromGitHub {
owner = "mobile-shell";
repo = "mosh";
rev = "dbe419d0e069df3fedc212d456449f64d0280c76";
sha256 = "09mvk9zxclkf4wrkkfzg0p2hx1f74gpymr0a0l3pckmk6za2n3d1";
};
});
})
];
}