Anthony Rodriguez
8fe0604299
Refactored the entire repository structure, as putting everything into modules was just awkward. Took heavy inspiration from fufexan's repository, fufexan/dotfiles, as the structure felt much saner.
40 lines
1.1 KiB
Nix
40 lines
1.1 KiB
Nix
{pkgs, ...}: let
|
|
catppuccin-fish = pkgs.fetchFromGitHub {
|
|
owner = "catppuccin";
|
|
repo = "fish";
|
|
rev = "a3b9eb5eaf2171ba1359fe98f20d226c016568cf";
|
|
hash = "sha256-shQxlyoauXJACoZWtRUbRMxmm10R8vOigXwjxBhG8ng=";
|
|
};
|
|
in {
|
|
programs.fish = {
|
|
enable = true;
|
|
interactiveShellInit = ''
|
|
set fish_greeting # Disable greeting
|
|
fish_vi_key_bindings # Enable Vi mode
|
|
fish_config theme choose "Catppuccin Frappe"
|
|
'';
|
|
shellAbbrs = {
|
|
cd = "z";
|
|
ngc = "sudo nix-collect-garbage -d";
|
|
};
|
|
plugins = [
|
|
{
|
|
name = "fzf";
|
|
inherit (pkgs.fishPlugins.fzf) src;
|
|
}
|
|
];
|
|
};
|
|
|
|
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
|
|
'';
|
|
};
|
|
|
|
xdg.configFile."fish/themes/Catppuccin Frappe.theme".source = "${catppuccin-fish}/themes/Catppuccin Frappe.theme";
|
|
}
|