2024-12-05 03:10:00 +00:00
|
|
|
{ pkgs, ... }: {
|
2024-12-20 01:30:06 +00:00
|
|
|
imports = [ ./abbrs.nix ./functions.nix ./shell-init.nix ];
|
2024-12-05 03:10:00 +00:00
|
|
|
|
|
|
|
programs = {
|
|
|
|
fish = {
|
|
|
|
enable = true;
|
|
|
|
|
|
|
|
plugins = [
|
|
|
|
{
|
|
|
|
name = "plugin-git";
|
|
|
|
src = pkgs.fishPlugins.plugin-git.src;
|
|
|
|
}
|
|
|
|
{
|
|
|
|
name = "bass";
|
|
|
|
src = pkgs.fishPlugins.bass.src;
|
|
|
|
}
|
|
|
|
];
|
|
|
|
};
|
|
|
|
|
2024-12-05 21:35:21 +00:00
|
|
|
starship = {
|
|
|
|
enable = true;
|
|
|
|
enableFishIntegration = true;
|
|
|
|
enableTransience = true;
|
|
|
|
settings = {
|
|
|
|
container.disabled = true;
|
2024-12-20 01:30:06 +00:00
|
|
|
nix_shell = { format = "via [$symbol]($style) "; };
|
2024-12-05 21:35:21 +00:00
|
|
|
};
|
|
|
|
};
|
2024-12-05 03:10:00 +00:00
|
|
|
};
|
2024-12-05 21:35:21 +00:00
|
|
|
}
|
|
|
|
|