home | refactor

This commit is contained in:
Don Harper 2024-01-06 14:02:54 -06:00
parent 672d71a83a
commit 73fadb981d
468 changed files with 197 additions and 210 deletions

34
home/gui/alacritty.nix Normal file
View file

@ -0,0 +1,34 @@
{ pkgs, ... }:
{
programs.alacritty = {
enable = true;
settings = {
window.opacity = 0.8;
decorations_theme_variant = "dark";
font = {
normal = {
family = "monospace";
style = "Regular";
};
bold = {
family = "monospace";
style = "Bold";
};
italic = {
family = "monospace";
style = "Italic";
};
bold_italic = {
family = "monospace";
style = "Bold Italic";
};
size = 9.0;
};
bell = {
animation = "EaseOutExpo";
duration = 500;
};
};
};
}
# vim: shiftwidth=2 tabstop=2 expandtab