nixos-config/home-manager/modules/alacritty.nix
2024-12-02 18:23:55 -05:00

25 lines
375 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";
};
};
};
};
home.packages = with pkgs; [
ueberzugpp
monaspace
];
}