nix-config/modules/nix/terminal/alacritty.nix
smayzy 1585912162
All checks were successful
nix flake show / show-flake (push) Successful in 31s
add alacritty
2025-07-24 17:18:58 +02:00

16 lines
317 B
Nix

{ config, lib, pkgs, ... }:
let
inherit (lib) mkIf mkOption types;
in
{
options.smayzy.alacritty.enable = mkOption {
type = types.bool;
default = false;
description = "alacritty";
};
config = mkIf config.smayzy.alacritty.enable {
environment.systemPackages = with pkgs; [ alacritty ];
};
}