Files
nixos-config/options.nix
T

19 lines
385 B
Nix

{
lib,
...
}:
{
options.kekleo = with lib.types; {
publicKeys = lib.mkOption {
type = listOf str;
default = [ ];
description = "List of public keys to use for ssh login, secret encryption, etc.";
};
graphical = lib.mkOption {
type = bool;
default = true;
description = "Whether to enable GUI features and programs.";
};
};
}