mirror of
https://github.com/ryan4yin/nix-config.git
synced 2026-03-25 19:01:43 +01:00
29 lines
444 B
Nix
29 lines
444 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;
|
|
};
|
|
|
|
};
|
|
};
|
|
} |