nix-config/home/common/desktop/alacritty.nix
2024-08-13 17:01:22 +02:00

15 lines
279 B
Nix

{ config, lib, ... }: {
programs.alacritty = {
enable = true;
settings = {
window.padding = {
x = 10;
y = 10;
};
font = lib.mkForce {
normal.family = config.fontProfiles.bitmap.family;
size = 12;
};
};
};
}