update
This commit is contained in:
30
home/alacritty.nix
Normal file
30
home/alacritty.nix
Normal file
@@ -0,0 +1,30 @@
|
||||
{ config, pkgs, ... }:
|
||||
{
|
||||
programs.alacritty = {
|
||||
enable = true;
|
||||
settings = {
|
||||
scrolling = {
|
||||
history = 10000;
|
||||
multiplier = 5;
|
||||
};
|
||||
font = {
|
||||
size = 14;
|
||||
normal = {
|
||||
family = "0xProto Nerd Font Mono";
|
||||
style = "Regular";
|
||||
};
|
||||
bold = {
|
||||
family = "0xProto Nerd Font Mono";
|
||||
style = "Bold";
|
||||
};
|
||||
italic = {
|
||||
family = "0xProto Nerd Font Mono";
|
||||
style = "Italic";
|
||||
};
|
||||
};
|
||||
window = {
|
||||
opacity = 0.8;
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user