nixos-config/home-manager/shell/default.nix

17 lines
234 B
Nix

{ ... }:
{
imports = [
./alacritty.nix
./starship.nix
];
programs.fish.enable = true;
# Hook nix-direnv to shell
programs.fish.shellInit = ''
set -xg DIRENV_LOG_FORMAT ""
direnv hook fish | source
'';
}