Wrap ssh so that we use a TERM commonly known by servers
This commit is contained in:
parent
0ad479c124
commit
0a88804fc0
2 changed files with 19 additions and 6 deletions
|
@ -2,15 +2,12 @@ with import <nixpkgs> {};
|
|||
|
||||
{
|
||||
home-manager.users.charlotte = { pkgs, ... }: {
|
||||
nixpkgs.overlays = [
|
||||
home.packages = [
|
||||
(
|
||||
self: super: {
|
||||
neovim = super.neovim.override {
|
||||
configure = (import ./base.nix { pkgs = self; });
|
||||
};
|
||||
pkgs.neovim.override {
|
||||
configure = (import ./base.nix { inherit pkgs; });
|
||||
}
|
||||
)
|
||||
];
|
||||
home.packages = [ pkgs.neovim ];
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue