NixConfig/modules/nix/sway/alacritty.nix
fqbn207 7ceb163030 kekl
2025-01-07 19:33:48 +01:00

29 lines
466 B
Nix

{ config, pkgs, ... }:
{
programs.alacritty = {
enable = true;
settings = {
terminal = {
shell = "tmux";
};
window = {
opacity = 0.8;
blur = true;
};
colors = {
primary = {
background = "#000000";
foreground = "#FFFFFF";
};
};
font = {
size = 18;
normal = {
family = "FantasqueSansMNerdFont";
};
};
};
};
}