This reverts commit 93d87124e90859011855467b93592bd3d1bb7723, reversing changes made to 194efc5c4b7c1dabebd0731c81952e17d935c4d8.
40 lines
873 B
Nix
40 lines
873 B
Nix
{lib, ...}:
|
|
with lib.types; let
|
|
mirror = lib.mkOption {
|
|
type = nullOr str;
|
|
default = null;
|
|
description = "release zip mirror base URL, if null then the release zip must be manually added to the Nix store";
|
|
};
|
|
|
|
release = lib.mkOption {
|
|
type = str;
|
|
default = "latest";
|
|
description = "pinned athena-bccr release tag";
|
|
};
|
|
|
|
vendor = lib.mkOption {
|
|
type = enum ["athena" "idopte"];
|
|
default = "idopte";
|
|
description = "driver dvendor";
|
|
};
|
|
in {
|
|
hm = {
|
|
inherit mirror release vendor;
|
|
|
|
gaudiHash = lib.mkOption {
|
|
type = nullOr str;
|
|
default = null;
|
|
description = "hash of the Gaudi client";
|
|
};
|
|
};
|
|
|
|
sys = {
|
|
inherit mirror release vendor;
|
|
|
|
group = lib.mkOption {
|
|
type = str;
|
|
default = "users";
|
|
description = "user group with full access to the smartcard reader";
|
|
};
|
|
};
|
|
}
|