Files
nix-config/homeConfigs/modules/alacritty.nix
tomoron 3207899d6c
All checks were successful
Build iso when a new version is pushed / test (push) Successful in 13m4s
try other wallpaper, might go back
2025-04-20 21:45:05 +02:00

21 lines
404 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 {
programs.alacritty = {
enable = true;
settings = {
window.opacity = 0.95;
env.XTERM = "xterm-256color";
font.size = 9;
};
};
};
}