{ den.aspects = { software-tty = { nixos = { programs.fish.enable = true; }; homeManager = { pkgs, ... }: { home.shell.enableFishIntegration = true; programs = { fish = { enable = true; plugins = [ { name = "autopair"; src = pkgs.fishPlugins.autopair; } ]; functions = { fish_greeting = ""; }; }; }; }; }; }; }