19 lines
387 B
Nix
19 lines
387 B
Nix
{ 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";
|
|
};
|
|
};
|
|
};
|
|
}
|