nixos-private-dots/modules/home-manager/terminal/alacritty.nix
2024-07-31 06:18:16 +03:00

31 lines
No EOL
659 B
Nix

{ pkgs, ... }: {
programs.alacritty = { # Минимализм
enable = true;
settings = { # https://alacritty.org/config-alacritty.html
window.pandding = {
x = 15;
y = 15;
};
font = let
nerdFont = "JetBrainsMono Nerd Font";
in {
normal = {
family = nerdFont;
};
bold = {
family = nerdFont;
};
italic = {
family = nerdFont;
};
bold_italic = {
family = nerdFont;
};
};
};
};
home.packages = with pkgs; [
ueberzugpp # Отображение медиа в терминале
];
}