9 lines
156 B
Nix
9 lines
156 B
Nix
{ lib, ... }:
|
|
{
|
|
options.useAlacritty = lib.mkOption {
|
|
type = with lib.types; uniq bool;
|
|
description = "Use Alacritty";
|
|
default = true;
|
|
};
|
|
}
|