mirror of
https://github.com/jbowdre/dotfiles.git
synced 2024-12-19 03:02:17 +00:00
37 lines
628 B
Nix
37 lines
628 B
Nix
{ pkgs, ... }: {
|
|
imports = [
|
|
./abbrs.nix
|
|
./functions.nix
|
|
./shell-init.nix
|
|
];
|
|
|
|
programs = {
|
|
fish = {
|
|
enable = true;
|
|
|
|
plugins = [
|
|
{
|
|
name = "plugin-git";
|
|
src = pkgs.fishPlugins.plugin-git.src;
|
|
}
|
|
{
|
|
name = "bass";
|
|
src = pkgs.fishPlugins.bass.src;
|
|
}
|
|
];
|
|
};
|
|
|
|
starship = {
|
|
enable = true;
|
|
enableFishIntegration = true;
|
|
enableTransience = true;
|
|
settings = {
|
|
container.disabled = true;
|
|
nix_shell = {
|
|
format = "via [$symbol]($style) ";
|
|
};
|
|
};
|
|
};
|
|
};
|
|
}
|
|
|