dotfiles/home/modules/gui/alacritty.nix

36 lines
790 B
Nix
Raw Normal View History

{ config, pkgs, ... }: {
2024-12-20 23:25:48 +00:00
# home.packages = with pkgs; [ alacritty-theme ];
programs.alacritty = {
enable = true;
package = (config.lib.nixGL.wrap pkgs.alacritty);
2024-12-20 23:25:48 +00:00
settings = {
2024-12-21 21:15:22 +00:00
bell = {
animation = "EaseOutCirc";
duration = 200;
color = "#c2985b";
};
cursor = {
style = {
shape = "Beam";
blinking = "On";
2024-12-20 23:25:48 +00:00
};
};
2024-12-21 21:15:22 +00:00
font = { normal = { family = "BerkeleyMono Nerd Font Mono"; }; };
2024-12-20 23:25:48 +00:00
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";
};
};
};
2024-12-20 23:25:48 +00:00
}