nixos/home/modules/fish.nix

30 lines
752 B
Nix
Raw Normal View History

2024-05-30 04:54:42 +00:00
{ pkgs, inputs, config, lib, ... }:
let
cfg = config.snowhawk.fish;
in
2024-02-29 04:52:51 +00:00
{
2024-05-30 04:54:42 +00:00
options.snowhawk.fish = {
enable = lib.mkEnableOption "fish";
2024-05-29 23:03:39 +00:00
};
2024-05-30 04:54:42 +00:00
config = lib.mkIf cfg.enable {
programs.bash = {
enable = true;
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
'';
};
2024-05-29 23:03:39 +00:00
2024-05-30 04:54:42 +00:00
programs.fish = {
enable = true;
interactiveShellInit =
builtins.readFile "${inputs.fish_theme}/fish_prompt.fish" + "\n" +
builtins.readFile ../fish/config.fish
;
};
2024-02-29 04:52:51 +00:00
};
}