dotfiles/home/modules/gui/alacritty.nix

30 lines
637 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 = {
font = {
normal = {
family = "BerkeleyMono Nerd Font Mono";
style = "Bold Italic";
};
};
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
}