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

14 lines
191 B
Nix

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