18 lines
285 B
Nix
18 lines
285 B
Nix
{pkgs, ...}: {
|
|
home.packages = with pkgs; [
|
|
grc
|
|
];
|
|
|
|
programs.fish = {
|
|
enable = true;
|
|
|
|
plugins = [
|
|
# Enable a plugin (here grc for colorized command output) from nixpkgs
|
|
{
|
|
name = "grc";
|
|
src = pkgs.fishPlugins.grc.src;
|
|
}
|
|
];
|
|
};
|
|
}
|