blob: 7328fa795d9093fa74a4b3a97552f65bcb81d0f0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
{ pkgs, ... }:
{
home.packages = [ pkgs.alacritty-theme ];
programs.alacritty = {
enable = true;
settings = {
import = [ "${pkgs.alacritty-theme}/catppuccin_macchiato.toml" ];
font = {
normal = {
family = "Sauce Code Pro Nerd Font";
style = "Medium";
};
size = 11.5;
};
window.opacity = 0.7;
cursor = {
style = "Beam";
thickness = 0.27;
};
};
};
}
|