13 lines
394 B
Nix
13 lines
394 B
Nix
{ config, lib, ... }:
|
|
let
|
|
inherit (config.catppuccin) sources;
|
|
cfg = config.programs.alacritty.catppuccin;
|
|
enable = cfg.enable && config.programs.alacritty.enable;
|
|
in
|
|
{
|
|
options.programs.alacritty.catppuccin = lib.ctp.mkCatppuccinOpt "alacritty";
|
|
|
|
config = lib.mkIf enable {
|
|
programs.alacritty.settings = lib.importTOML "${sources.alacritty}/catppuccin-${cfg.flavor}.toml";
|
|
};
|
|
}
|