This repository has been archived on 2024-07-29. You can view files and clone it, but cannot push or open issues or pull requests.
nix-config/home/fish/default.nix

18 lines
316 B
Nix
Raw Normal View History

2024-07-19 01:08:20 -05:00
{ lib, config, ...}:
{
imports = [
./aliases.nix
./functions.nix
];
programs.fish = {
enable = true;
shellInit = "
if test -e /nix/var/nix/profiles/default/etc/profile.d/nix-daemon.fish
source /nix/var/nix/profiles/default/etc/profile.d/nix-daemon.fish
end
";
2024-07-19 01:08:20 -05:00
};
}