nixos/home/shell/fish.nix
Evie Litherland-Smith e65675da02 Move some package definitions from system to home
Remove thunar, effectively replaced by rofi + terminal
Add some alias to quickly update nixos and home-manager
2023-07-18 14:51:53 +01:00

28 lines
773 B
Nix

{pkgs, ...}: {
imports = [./default.nix];
home.packages = with pkgs; [dig silver-searcher gnumake];
programs = {
fish = {
enable = true;
shellAbbrs = {lg = "lazygit";};
plugins = [
{
name = "tokyonight";
src =
pkgs.fetchFromGitHub {
owner = "folke";
repo = "tokyonight.nvim";
rev = "cd5156f4b4a6c4c337a46deb0c0bd37319920833";
sha256 = "/ht+ixR1eyYR0la00Xq5q1gCsgb5Ly90JghERwbaDPQ=";
}
+ "/extras/fish/tokyonight_night.fish";
}
];
};
# direnv.enableFishIntegration = true;
fzf.enableFishIntegration = true;
keychain.enableFishIntegration = true;
starship.enableFishIntegration = true;
};
}