dotfiles/home/modules/gui/alacritty.nix
2024-12-21 15:15:22 -06:00

35 lines
790 B
Nix

{ config, pkgs, ... }: {
# home.packages = with pkgs; [ alacritty-theme ];
programs.alacritty = {
enable = true;
package = (config.lib.nixGL.wrap pkgs.alacritty);
settings = {
bell = {
animation = "EaseOutCirc";
duration = 200;
color = "#c2985b";
};
cursor = {
style = {
shape = "Beam";
blinking = "On";
};
};
font = { normal = { family = "BerkeleyMono Nerd Font Mono"; }; };
general.import = [ pkgs.alacritty-theme.tokyo_night_enhanced ];
terminal = { shell.program = "${pkgs.fish}/bin/fish"; };
window = {
decorations = "None";
padding = {
x = 3;
y = 3;
};
startup_mode = "Maximized";
};
};
};
}