This commit is contained in:
2026-03-23 23:30:03 +09:00
parent 52d1d2db18
commit 12c8cc4d69
14 changed files with 346 additions and 59 deletions

30
home/alacritty.nix Normal file
View 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;
};
};
};
}