Files
nixos-config/modules/shell/alacritty.nix
T

33 lines
590 B
Nix

{ pkgs, ... }:
{
programs.alacritty = {
enable = true;
# Custom settings
settings = {
window = {
padding = {
x = 10;
y = 10;
};
opacity = 0.9;
};
font = {
size = 12.0;
normal = {
#family = "JetBrainsMono Nerd Font";
family = "FiraCode";
style = "Regular";
};
};
colors = {
# You can define themes here or import them
primary = {
background = "#1a1b26";
foreground = "#a9b1d6";
};
};
};
};
}