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

14 lines
191 B
Nix
Raw Normal View History

2022-01-06 21:14:02 -05:00
{ ... }:
{
imports = [
./alacritty.nix
./starship.nix
];
programs.fish.enable = true;
2022-03-11 21:05:25 -05:00
# Hook nix-direnv to shell
programs.fish.shellInit = "direnv hook fish | source";
2022-01-06 21:14:02 -05:00
}