mirror of
https://github.com/donovanglover/nix-config.git
synced 2025-01-24 22:58:38 +01:00
6c34cce882
Found thanks to nixd showing different colors for these.
16 lines
224 B
Nix
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;
|
|
};
|
|
};
|
|
}
|