nix-config/home/alacritty/default.nix

18 lines
238 B
Nix
Raw Normal View History

2022-01-18 09:32:55 +01:00
{ config, pkgs, ... }:
{
imports = [ ./common.nix ];
programs.alacritty = {
settings = {
font = {
offset = {
x = 0;
y = 0;
};
2022-01-21 16:18:38 +01:00
# size = 7;
size = 9;
2022-01-18 09:32:55 +01:00
};
};
};
}