modules/athena-bccr: initial commit
This commit is contained in:
parent
e72efe6b59
commit
c651b8c470
4 changed files with 93 additions and 0 deletions
30
modules/athena-bccr/options.nix
Normal file
30
modules/athena-bccr/options.nix
Normal file
|
@ -0,0 +1,30 @@
|
|||
{lib, ...}:
|
||||
with lib.types; {
|
||||
hm = {
|
||||
gaudiHash = lib.mkOption {
|
||||
type = nullOr str;
|
||||
default = null;
|
||||
description = "hash of the Gaudi client";
|
||||
};
|
||||
|
||||
release = lib.mkOption {
|
||||
type = str;
|
||||
default = "latest";
|
||||
description = "pinned athena-bccr release tag";
|
||||
};
|
||||
};
|
||||
|
||||
sys = {
|
||||
group = lib.mkOption {
|
||||
type = str;
|
||||
default = "users";
|
||||
description = "user group with full access to the smartcard reader";
|
||||
};
|
||||
|
||||
release = lib.mkOption {
|
||||
type = str;
|
||||
default = "latest";
|
||||
description = "pinned athena-bccr release tag";
|
||||
};
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue