28 lines
585 B
Nix
28 lines
585 B
Nix
{
|
|
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 = "";
|
|
};
|
|
};
|
|
};
|
|
};
|
|
};
|
|
};
|
|
}
|