1
Fork 0
satellite/modules/applications/shells/fish.nix
2022-03-08 23:26:20 +02:00

19 lines
392 B
Nix

{ pkgs, ... }:
let
shellAliases = import ./aliases.nix;
common = import ./common.nix;
in
{
home-manager.users.adrielus.programs.fish = {
inherit shellAliases;
shellInit = ''
source ${../../../dotfiles/fish/fish.conf}
'' ++ common.shellInit;
plugins = with pkgs; [ myFishPlugins.z myFishPlugins.vi-mode myFishPlugins.themes.agnoster ];
enable = true;
};
}