This repository has been archived on 2024-04-14. You can view files and clone it, but cannot push or open issues or pull requests.
nixos-dotfiles/user/configs/fish/default.nix

64 lines
1.5 KiB
Nix
Executable File

{ config, pkgs, inputs, ... }: {
programs.exa = {
enable = true;
enableAliases = true;
};
programs.fish = {
enable = true;
plugins = [
{
name = "bobthefish";
src = inputs.bobthefish;
}
];
interactiveShellInit = ''
${pkgs.any-nix-shell}/bin/any-nix-shell fish --info-right | source
set -g theme_color_scheme gruvbox
set -g theme_nerd_fonts yes
set -g theme_display_git_default_branch yes
set -g theme_git_default_branches master main
'';
# loginShellInit = ''
# if test (tty) = "/dev/tty1"
# ${pkgs.sway}/bin/sway &> ~/.sway.log
# end
#'';
functions = {
fish_greeting = "";
ec = ''
pushd . &> /dev/null
cd "${config.home.homeDirectory}/.dotfiles"
nvim "+Telescope find_files"
popd
'';
nor = ''
pushd . &> /dev/null
cd "${config.home.homeDirectory}/.dotfiles"
doas nixos-rebuild switch --flake .# --impure
popd &> /dev/null
'';
nou = ''
pushd . &> /dev/null
cd "${config.home.homeDirectory}/.dotfiles"
nix flake lock --commit-lock-file --update-input nixpkgs --update-input home-manager --update-input hyprland --update-input chaotic-nyx
doas nixos-rebuild switch --upgrade --flake .# --impure
popd &> /dev/null
'';
};
shellAliases = {
nf = "${pkgs.pfetch}/bin/pfetch";
e = "${pkgs.neovim}/bin/nvim";
};
};
}