mirror of
https://git.sr.ht/~coasteen/dotfiles
synced 2026-02-04 14:14:02 +01:00
26 lines
320 B
Nix
26 lines
320 B
Nix
{
|
|
pkgs,
|
|
config,
|
|
...
|
|
}:
|
|
{
|
|
programs.alacritty = {
|
|
enable = true;
|
|
settings = {
|
|
window = {
|
|
opacity = 0.9;
|
|
padding = {
|
|
x = 2;
|
|
y = 2;
|
|
};
|
|
};
|
|
font = {
|
|
normal = {
|
|
family = "JetBrainsMono Nerd Font";
|
|
style = "Regular";
|
|
};
|
|
size = 14;
|
|
};
|
|
};
|
|
};
|
|
}
|