nix-config/home/alacritty.nix
Donovan Glover 6c34cce882
treewide(nix): Remove duplicate attribute name usage
Found thanks to nixd showing different colors for these.
2024-08-10 20:55:46 -04:00

16 lines
224 B
Nix

{
programs.alacritty = {
enable = true;
settings = {
window.padding = {
x = 10;
y = 10;
};
mouse.hide_when_typing = true;
selection.save_to_clipboard = true;
};
};
}