modules/athena-bccr: initial commit

This commit is contained in:
Alejandro Soto 2025-08-06 14:59:33 -06:00
parent e72efe6b59
commit c651b8c470
No known key found for this signature in database
GPG key ID: A2C4C79764EE8F16
4 changed files with 93 additions and 0 deletions

View file

@ -0,0 +1,14 @@
{
pkgs,
lib,
cfg,
doctrine,
...
}: let
athena = pkgs.${doctrine.prefix}.athena-bccr.${cfg.release};
in {
home.packages = [
athena.firmador
(athena.gaudi.override {inherit (cfg) gaudiHash;})
];
}