replace kitty w/ alacritty

This commit is contained in:
insects 2024-08-13 17:01:22 +02:00
parent e9cac74224
commit 81c7182243
4 changed files with 17 additions and 11 deletions

View file

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