alacritty

main
Zynh Ludwig 2024-05-29 19:58:14 -07:00
parent ab61c51afe
commit e4823110b1
2 changed files with 28 additions and 0 deletions

View File

@ -4,6 +4,7 @@
imports = [ imports = [
./home/modules/git.nix ./home/modules/git.nix
./home/modules/fish.nix ./home/modules/fish.nix
./home/modules/alacritty.nix
]; ];
# Home Manager needs a bit of information about you and the paths it should # Home Manager needs a bit of information about you and the paths it should

View File

@ -0,0 +1,27 @@
{ pkgs, ... }:
{
programs.alacritty = {
enable = true;
settings = {
shell = "${pkgs.fish}/bin/fish";
window = {
opacity = 0.98;
};
font = {
normal = {
family = "JetBrainsMono Nerd Font";
style = "Regular";
};
bold = {
family = "JetBrainsMono Nerd Font";
style = "Bold";
};
italic = {
family = "JetBrainsMono Nerd Font";
style = "Italic";
};
};
};
};
}