summaryrefslogtreecommitdiff
path: root/trivionomicon/modules/athena-bccr/options.nix
diff options
context:
space:
mode:
authorAlejandro Soto <alejandro@34project.org>2026-03-09 15:25:05 -0600
committerAlejandro Soto <alejandro@34project.org>2026-03-09 15:25:31 -0600
commitf88abe5828bd9b07a0b4fe7b90b86810a0ce188c (patch)
treec418af8f9abe371540438b78a8b5cde96f22d41d /trivionomicon/modules/athena-bccr/options.nix
parent354374d772cc68e035f8306e54af0ba370a0a399 (diff)
trivionomicon: athena-bccr: add support for mirrors
Diffstat (limited to 'trivionomicon/modules/athena-bccr/options.nix')
-rw-r--r--trivionomicon/modules/athena-bccr/options.nix12
1 files changed, 12 insertions, 0 deletions
diff --git a/trivionomicon/modules/athena-bccr/options.nix b/trivionomicon/modules/athena-bccr/options.nix
index eb61cf5..7b6cf93 100644
--- a/trivionomicon/modules/athena-bccr/options.nix
+++ b/trivionomicon/modules/athena-bccr/options.nix
@@ -7,6 +7,12 @@ with lib.types; {
description = "hash of the Gaudi client";
};
+ 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";
@@ -21,6 +27,12 @@ with lib.types; {
description = "user group with full access to the smartcard reader";
};
+ 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";