nix-dotfiles/home-manager/users/sperrault.nix
sloane be3150c1dd
updates for work machine, uses older version of fish
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.
2025-02-18 09:31:55 -05:00

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";
};
}