18 lines
335 B
Nix
18 lines
335 B
Nix
{
|
|
programs.fish = lib.mkForce {
|
|
enable = false;
|
|
#shellInit = lib.concatMapStrings (x: "\n" + x) [
|
|
# "eval $(thefuck --alias)"
|
|
#];
|
|
|
|
plugins = [
|
|
# Enable a plugin (here grc for colorized command output) from nixpkgs
|
|
{
|
|
name = "grc";
|
|
src = pkgs.fishPlugins.grc.src;
|
|
}
|
|
];
|
|
};
|
|
|
|
}
|