nix/modules/apps/gui/alacritty/default.nix

14 lines
198 B
Nix
Raw Normal View History

2024-08-31 16:04:57 +02:00
{...}: {
home-manager.users.joy.programs.alacritty = {
enable = true;
settings = {
window = {
padding = {
x = 5;
y = 5;
};
};
};
};
}