home-manager | refactor a bit, added fuzzel

This commit is contained in:
Don Harper 2023-07-23 10:10:16 -05:00
parent 9cffac9351
commit f2a8ec8606
5 changed files with 42 additions and 9 deletions

View file

@ -1,34 +0,0 @@
{ 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