there is some sort of weird incompatibility with newer versions of fish, tmux, vim-tmux-navigator, and my work machine. downgrading fish fixed the issue.
9 lines
226 B
Nix
9 lines
226 B
Nix
{ nixpkgs-old-fish, ... }:
|
|
{
|
|
imports = [ ../default.nix ];
|
|
programs.fish.package = nixpkgs-old-fish.legacyPackages.aarch64-darwin.fish;
|
|
home = {
|
|
username = "sperrault";
|
|
homeDirectory = "/Users/sperrault";
|
|
};
|
|
}
|