dotfiles/etc/configs/alacritty.nix

19 lines
387 B
Nix
Raw Normal View History

2024-04-28 11:35:35 +02:00
{ pkgs, ... }: {
home-manager.users.grape.programs.alacritty =
{
enable = true;
settings = {
font.normal = {
family = "Jetbrains Mono Nerd font";
style = "Regular";
};
#shell.program = "${pkgs.zsh}";
colors.primary = {
foreground = "#ffffff";
background = "#191830";
};
};
};
}