summaryrefslogtreecommitdiff
path: root/home/desktop/athena.nix
diff options
context:
space:
mode:
authorAlejandro Soto <alejandro@34project.org>2025-10-11 12:22:00 -0600
committerAlejandro Soto <alejandro@34project.org>2025-10-11 12:22:00 -0600
commita5bb6bec46924a2954382d5726540f6902aaa8b1 (patch)
treec13ee41179e65658807c146b04430e8bae51d0e7 /home/desktop/athena.nix
parent037a099639c3a359b006493b481a38701febb81e (diff)
tree-wide: replace local athena-bccr with version from trivionomicon
Diffstat (limited to 'home/desktop/athena.nix')
-rw-r--r--home/desktop/athena.nix16
1 files changed, 16 insertions, 0 deletions
diff --git a/home/desktop/athena.nix b/home/desktop/athena.nix
new file mode 100644
index 0000000..6c1cbad
--- /dev/null
+++ b/home/desktop/athena.nix
@@ -0,0 +1,16 @@
+{
+ config,
+ lib,
+ pkgs,
+ ...
+}:
+with lib; let
+ cfg = config.local.desktop;
+in {
+ config = mkIf cfg.enable {
+ local.athena-bccr = {
+ enable = true;
+ gaudiHash = "sha256-EFVb3K/hQUD/u8/IftBAIYvSefwPqZDvcT8S9B860MM=";
+ };
+ };
+}