18 lines
324 B
Nix
18 lines
324 B
Nix
{ pkgs, lib, config, ... }:
|
|
with lib;
|
|
{
|
|
|
|
options.gui.alacritty.enable = mkOption {
|
|
type = lib.types.bool;
|
|
default = config.gui.enable;
|
|
};
|
|
|
|
config = lib.mkIf config.gui.alacritty.enable {
|
|
programs.alacritty = {
|
|
enable = true;
|
|
settings = {
|
|
font.size = mkForce 6.5;
|
|
};
|
|
};
|
|
};
|
|
}
|