dotfiles/home/common/options.nix
2023-01-24 02:24:40 +07:00

9 lines
156 B
Nix

{ lib, ... }:
{
options.useAlacritty = lib.mkOption {
type = with lib.types; uniq bool;
description = "Use Alacritty";
default = true;
};
}