summaryrefslogtreecommitdiff
path: root/home/desktop/athena.nix
diff options
context:
space:
mode:
Diffstat (limited to 'home/desktop/athena.nix')
-rw-r--r--home/desktop/athena.nix20
1 files changed, 20 insertions, 0 deletions
diff --git a/home/desktop/athena.nix b/home/desktop/athena.nix
new file mode 100644
index 0000000..226841f
--- /dev/null
+++ b/home/desktop/athena.nix
@@ -0,0 +1,20 @@
+{
+ config,
+ lib,
+ pkgs,
+ ...
+}:
+with lib; let
+ cfg = config.local.desktop;
+in {
+ config = mkIf cfg.enable {
+ local.athena-bccr = {
+ enable = true;
+
+ mirror = "https://public.posixlycorrect.com/dist/firma_digital";
+ vendor = "athena";
+
+ gaudiHash = "sha256-zZpaMO57vyQqmtCnymUl+vm//IObDX2dfmp/0+OPb4M=";
+ };
+ };
+}