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