30 lines
445 B
Nix
30 lines
445 B
Nix
{ pkgs, ... }:
|
|
|
|
# terminals
|
|
|
|
let
|
|
font = "JetBrainsMono Nerd Font";
|
|
in
|
|
{
|
|
programs.alacritty = {
|
|
enable = true;
|
|
settings = {
|
|
window.opacity = 0.95;
|
|
window.dynamic_padding = true;
|
|
window.padding = {
|
|
x = 5;
|
|
y = 5;
|
|
};
|
|
scrolling.history = 10000;
|
|
|
|
font = {
|
|
normal.family = font;
|
|
bold.family = font;
|
|
italic.family = font;
|
|
size = 11;
|
|
};
|
|
|
|
};
|
|
};
|
|
}
|