Files
nix-config/homeConfigs/modules/alacritty.nix
tomoron e13360f793
All checks were successful
Build iso when a new version is pushed / test (push) Successful in 2m38s
add yubikey to unlock FDE on laptop; update flake; minor wayland changes
2025-09-04 15:17:30 +02:00

22 lines
442 B
Nix

{ lib, config, ... }:
{
options.mods.alacritty.enable = lib.mkOption {
type = lib.types.bool;
default = true;
description = "install and config alacritty";
};
config = lib.mkIf config.mods.alacritty.enable {
catppuccin.alacritty.enable = true;
programs.alacritty = {
enable = true;
settings = {
# window.opacity = 0.95;
env.XTERM = "xterm-256color";
font.size = 9;
};
};
};
}