nixos/home/alacritty/default.nix
Evie Litherland-Smith f58fe209d8 Swap tokyonight theme for catppuccin
Move bat expression to separate file to be imported by git (for delta
syntax highlighting)
Move gitui from tui/default.nix to git/default.nix
2023-09-07 08:48:42 +01:00

23 lines
540 B
Nix

{ pkgs, catppuccin-themes, ... }:
{
home.packages = [ (pkgs.nerdfonts.override { fonts = [ "FiraCode" ]; }) ];
programs.alacritty = {
enable = true;
settings = {
import = [ catppuccin-themes.alacritty ];
window = {
dynamic_title = true;
decorations_theme_variant = "Dark";
};
font = {
normal.family = "FiraCode Nerd Font";
size = 14.0;
};
selection.save_to_clipboard = true;
live_config_reload = true;
mouse.hide_when_typing = true;
};
};
}