18 lines
338 B
Nix
18 lines
338 B
Nix
{ ... }: {
|
|
programs.alacritty = {
|
|
enable = true;
|
|
# custom settings
|
|
settings = {
|
|
env.TERM = "alacritty";
|
|
font = { size = 14; };
|
|
window = {
|
|
opacity = 1.0;
|
|
padding.x = 50;
|
|
padding.y = 50;
|
|
};
|
|
scrolling.multiplier = 5;
|
|
selection.save_to_clipboard = true;
|
|
};
|
|
};
|
|
}
|