1
1
Fork 0
nixos/options/custom/programs/alacritty.nix
Myned 53c8575116
git: migrate to forgejo
Squashes 1,331 commits

Signed-off-by: Myned <dev@bjork.tech>
2024-09-12 19:41:21 -05:00

30 lines
617 B
Nix

{ config, lib, ... }:
with lib;
let
cfg = config.custom.programs.alacritty;
in
{
options.custom.programs.alacritty.enable = mkOption { default = false; };
config.home-manager.users.${config.custom.username} = mkIf cfg.enable {
# https://github.com/alacritty/alacritty
programs.alacritty = {
enable = true;
# https://alacritty.org/config-alacritty.html
settings = {
font = {
#// builtin_box_drawing = false;
size = 14;
};
window = {
dynamic_padding = true;
resize_increments = true;
};
};
};
};
}