nixos/system/home/terminal.nix

23 lines
504 B
Nix
Raw Normal View History

{ config, lib, ... }:
{
programs.alacritty = {
enable = true;
settings = {
colors = with config.lib.stylix.colors.withHashtag; {
normal.yellow = lib.mkForce orange;
bright.yellow = lib.mkForce bright-orange;
};
window = {
dynamic_title = true;
padding = {
x = 5;
y = 5;
};
};
general.live_config_reload = true;
selection.save_to_clipboard = true;
mouse.hide_when_typing = true;
};
};
}