summaryrefslogtreecommitdiff
path: root/modules/athena-bccr/options.nix
diff options
context:
space:
mode:
authorAlejandro Soto <alejandro@34project.org>2025-08-06 14:59:33 -0600
committerAlejandro Soto <alejandro@34project.org>2025-08-06 14:59:33 -0600
commit53a923158861a9c52b86f37d826c3f4637476dfa (patch)
tree5453268dd858f542c1e24cc99b2bd3bf48b4a7d9 /modules/athena-bccr/options.nix
parentcc0216a6eca87508b8bb4886dccae28a603de54b (diff)
modules/athena-bccr: initial commit
Diffstat (limited to 'modules/athena-bccr/options.nix')
-rw-r--r--modules/athena-bccr/options.nix30
1 files changed, 30 insertions, 0 deletions
diff --git a/modules/athena-bccr/options.nix b/modules/athena-bccr/options.nix
new file mode 100644
index 0000000..eb61cf5
--- /dev/null
+++ b/modules/athena-bccr/options.nix
@@ -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";
+ };
+ };
+}