diff options
| author | Alejandro Soto <alejandro@34project.org> | 2026-03-23 19:25:02 -0600 |
|---|---|---|
| committer | Alejandro Soto <alejandro@34project.org> | 2026-03-23 19:25:02 -0600 |
| commit | 5e95091f5347c8b08109ed75e05400685ac98f12 (patch) | |
| tree | c2fefb4f550aaf6b9056de8a5324ef7836427a90 /trivionomicon/modules/athena-bccr/sys.nix | |
| parent | 9717852abe375eee25a56f05d9b70e5417ef7ac3 (diff) | |
| parent | d57db8081513a08d72a3a3db0bbf2d5c39657afe (diff) | |
Merge commit 'efcef47c37e27be128082fa9585b8fa1be3c4dd5' into master
Diffstat (limited to '')
| -rw-r--r-- | trivionomicon/modules/athena-bccr/sys.nix | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/trivionomicon/modules/athena-bccr/sys.nix b/trivionomicon/modules/athena-bccr/sys.nix index 0b4658c..bd7d758 100644 --- a/trivionomicon/modules/athena-bccr/sys.nix +++ b/trivionomicon/modules/athena-bccr/sys.nix @@ -6,15 +6,17 @@ doctrine, ... }: let - releases = pkgs.${doctrine.prefix}.athena-bccr.override { - inherit (cfg) mirror vendor; - }; + athena = + (pkgs.${doctrine.prefix}.athena-bccr.override { + inherit (cfg) mirror; + }).${ + cfg.release + }; + + inherit (athena) vendor; - athena = releases.${cfg.release}; driver = athena.card-driver.lib; scmiddleware = "${driver}/lib/SCMiddleware"; - - inherit (cfg) vendor; in { environment = { etc = |
