12 lines
192 B
Nix
12 lines
192 B
Nix
{ pkgs, ... }:
|
|
{
|
|
programs.fish = {
|
|
enable = true;
|
|
plugins = [
|
|
{
|
|
name = "fish-you-should-use";
|
|
src = pkgs.fishPlugins.fish-you-should-use;
|
|
}
|
|
];
|
|
};
|
|
}
|