33 lines
590 B
Nix
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";
|
|
};
|
|
};
|
|
};
|
|
};
|
|
}
|