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