nixos/home/modules/fish.nix

64 lines
1.6 KiB
Nix
Raw Normal View History

2024-05-30 04:54:42 +00:00
{ pkgs, inputs, config, lib, ... }:
2024-05-30 06:34:10 +00:00
2024-05-30 04:54:42 +00:00
let
cfg = config.snowhawk.fish;
2024-07-21 19:41:21 +00:00
macos = config.snowhawk.macos.enable;
2024-05-30 04:54:42 +00:00
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 06:34:10 +00:00
2024-05-30 04:54:42 +00:00
config = lib.mkIf cfg.enable {
2024-07-21 19:41:21 +00:00
programs.bash = lib.mkIf (!macos) {
2024-05-30 04:54:42 +00:00
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-07-21 19:41:21 +00:00
programs.zsh = lib.mkIf macos {
2024-07-21 19:26:22 +00:00
enable = true;
initExtra = ''
2024-07-23 01:53:05 +00:00
if [[ $(${pkgs.procps}/bin/ps $(${pkgs.procps}/bin/ps -p $$ -co "ppid=") -co "comm=") != "fish" && -z ''${ZSH_EXECUTION_STRING} ]]
2024-07-21 19:26:22 +00:00
then
exec ${pkgs.fish}/bin/fish
fi
'';
};
2024-05-30 04:54:42 +00:00
programs.fish = {
enable = true;
2024-07-23 03:39:52 +00:00
shellAbbrs = lib.mkIf (!macos) {
2024-06-30 23:27:31 +00:00
copy = "xclip -sel clip";
};
2024-05-30 04:54:42 +00:00
interactiveShellInit =
builtins.readFile "${inputs.fish_theme}/fish_prompt.fish" + "\n" +
2024-06-30 23:27:31 +00:00
builtins.readFile ../fish/config.fish;
2024-05-30 04:54:42 +00:00
};
2024-08-21 05:49:20 +00:00
home.packages = with pkgs; [
(writeShellApplication {
name = "lnmv";
runtimeInputs = [ coreutils ];
text = ''
# This is crude i know, more shell guards and stuff that I'm bad at
# Usage:
# lnmv <source> <target>
data=''${1%/}
target=''${2%/}
mv "$data" "$target"
ln -s "$target" "$data"
'';
})
];
2024-02-29 04:52:51 +00:00
};
}