config/hosts/shared/home-programs.nix
2025-04-10 20:07:05 -07:00

66 lines
1.3 KiB
Nix

{
config,
pkgs,
lib,
...
}: {
atuin = {
enable = true;
enableBashIntegration = true;
enableFishIntegration = true;
daemon.enable = true;
};
direnv = {
enable = true;
enableZshIntegration = true;
nix-direnv.enable = true;
};
kitty = {
enable = true;
themeFile = "Catppuccin-Mocha";
extraConfig = "font_family Iosevka NF
italic_font auto
bold_italic_font auto
bold_font auto";
};
hyfetch = {
enable = true;
settings = {
backend = "fastfetch";
preset = "bisexual";
mode = "rgb";
light_dark = "dark";
lightness = {
};
color_align = {
mode = "horizontal";
# custom_colors = [];
# fore_back = null;
};
distro = "nixos";
pride_month_shown = [
];
pride_month_disable = false;
};
};
fish = {
enable = true;
plugins = [
{
name = "tide";
inherit (pkgs.fishPlugins.tide) src;
}
];
shellAliases = {
reboot-windows = "sudo efibootmgr --bootnext 0000; sudo reboot -h now";
};
shellInit = "test -r '/Users/nmarks/.opam/opam-init/init.fish' && source '/Users/nmarks/.opam/opam-init/init.fish' > /dev/null 2> /dev/null; or true";
};
home-manager.enable = true;
}