aboutsummaryrefslogtreecommitdiff
path: root/home-manager/programs/alacritty/default.nix
blob: 930952d51490c552c97c45ba4d61f195bf164179 (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.yaml" ];
      font = {
        normal = {
          family = "Source Code Pro";
          style = "Medium";
        };
        size = 11.5;
      };
      window.opacity = 0.7;
      cursor = {
        style = "Beam";
        thickness = 0.27;
      };
    };
  };
}