17 lines
218 B
Nix
17 lines
218 B
Nix
|
{ config, pkgs, ... }:
|
||
|
|
||
|
{
|
||
|
imports = [ ./common.nix ];
|
||
|
programs.alacritty = {
|
||
|
settings = {
|
||
|
font = {
|
||
|
offset = {
|
||
|
x = 0;
|
||
|
y = 0;
|
||
|
};
|
||
|
size = 7;
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
}
|