added significant items

added fish shellInit, removed top level empty configuration, removed
lib.mkIf logic for fish aliases
This commit is contained in:
2024-07-21 10:03:25 -04:00
parent d6690e87b7
commit 08a543fabe
8 changed files with 25 additions and 16 deletions

View File

@ -1,5 +1,4 @@
{ lib, config, ... }:
{
programs.fish = {
shellAliases = {

View File

@ -8,5 +8,10 @@
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
";
};
}