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

56 lines
1.3 KiB
Nix
Executable File

{
config,
pkgs,
inputs,
...
}: {
programs.fish = {
enable = true;
plugins = [
{
name = "gruvbox-theme";
src = inputs.fish-plugin-gruvbox-theme;
}
{
name = "bobthefish";
src = inputs.fish-plugin-bobthefish;
}
];
interactiveShellInit = ''
theme_gruvbox dark medium
${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
'';
functions = {
fish_greeting = "";
nor = ''
doas nixos-rebuild switch --flake ${config.home.homeDirectory}/.dotfiles
'';
hms = ''
home-manager switch --flake ${config.home.homeDirectory}/.dotfiles
'';
nou = ''
nix flake update ${config.home.homeDirectory}/.dotfiles --commit-lock-file
doas nixos-rebuild switch --upgrade --flake ${config.home.homeDirectory}/.dotfiles
'';
};
shellAliases = {
ec = "hx ~/.dotfiles";
nf = "${pkgs.fastfetch}/bin/fastfetch";
ls = "${pkgs.eza}/bin/eza --icons";
ll = "${pkgs.eza}/bin/eza --icons -l";
r = "${pkgs.lf}/bin/lf";
};
};
}