feat: add fish git alias plugin

This commit is contained in:
Zhongheng Liu 2024-08-11 19:55:26 +08:00
commit be06b26ff9
No known key found for this signature in database

View file

@ -8,9 +8,7 @@
in
with lib; {
options = {
myShells.fish = {
enable = mkEnableOption "Enables fish and components.";
};
myShells.fish = {enable = mkEnableOption "Enables fish and components.";};
};
config = mkIf cfg.enable {
programs.fish = {
@ -29,6 +27,10 @@ in
sha256 = "0c5i7sdrsp0q3vbziqzdyqn4fmp235ax4mn4zslrswvn8g3fvdyh";
};
}
{
name = "plugin-git";
src = pkgs.fishPlugins.plugin-git.src;
}
];
};
};