dotfiles/user-modules/shell/fish.nix

64 lines
1.4 KiB
Nix
Raw Permalink Normal View History

2024-07-19 12:00:55 +00:00
{
lib,
config,
pkgs,
...
}:
2024-07-18 04:08:27 +00:00
with lib;
2024-07-19 12:00:55 +00:00
let
2024-07-18 04:08:27 +00:00
cfg = config.modules.fish;
2024-07-19 12:00:55 +00:00
in
{
2024-07-18 04:08:27 +00:00
options.modules.fish = {
enable = mkEnableOption "fish";
plugins = {
done = mkEnableOption "done";
fzf = mkEnableOption "fzf";
grc = mkEnableOption "grc";
};
};
config = mkIf cfg.enable {
# Make bash load into fish
# Bash will remain the default shell as fish is not POSIX compliant.
modules.bash.enable = true;
programs.bash.initExtra = ''
if [[ $(${pkgs.procps}/bin/ps --no-header --pid=$PPID --format=comm) != "fish" && -z ''${BASH_EXECUTION_STRING} ]]
then
shopt -q login_shell && LOGIN_OPTION='--login' || LOGIN_OPTION=""
exec ${pkgs.fish}/bin/fish $LOGIN_OPTION
fi
'';
# Actual fish configuration
programs.fish = {
enable = true;
2024-12-01 23:54:05 +00:00
shellAliases = config.modules.shell.aliases;
2024-07-18 04:08:27 +00:00
plugins = [
2024-07-19 12:00:55 +00:00
(mkIf cfg.plugins.done {
name = "done";
src = pkgs.fishPlugins.done.src;
})
(mkIf cfg.plugins.fzf {
name = "fzf";
src = pkgs.fishPlugins.fzf-fish.src;
})
(mkIf cfg.plugins.grc {
name = "grc";
src = pkgs.fishPlugins.grc.src;
})
2024-07-18 04:08:27 +00:00
];
};
# Fish plugin dependencies
home.packages = with pkgs; [
(mkIf cfg.plugins.fzf fzf)
(mkIf cfg.plugins.grc grc)
];
};
2024-07-19 12:00:55 +00:00
}