nixos-config/home-manager/modules/alacritty.nix
2024-12-23 14:16:50 -05:00

26 lines
422 B
Nix

# A fast, GPU-accelerated terminal emulator.
{
pkgs,
lib,
...
}:
{
programs.alacritty = {
enable = true;
settings = {
env = {
TERM = "xterm-256color";
};
font = {
normal = {
# family = lib.mkForce "Monaspace Krypton";
family = lib.mkForce "Comic Code";
};
};
};
};
home.packages = with pkgs; [
ueberzugpp
monaspace
];
}