From 5854cd79d8492a3ada8c9a582837f5cfdb477f3c Mon Sep 17 00:00:00 2001 From: Joshua Elmasri Date: Tue, 27 Jan 2026 11:24:15 -0600 Subject: [PATCH] Add MacOS Asahi CACHIX --- hosts/mac-laptop/configuration.nix | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/hosts/mac-laptop/configuration.nix b/hosts/mac-laptop/configuration.nix index 6133137..6aa64fa 100644 --- a/hosts/mac-laptop/configuration.nix +++ b/hosts/mac-laptop/configuration.nix @@ -18,6 +18,16 @@ hardware.apple.touchBar.enable = true; hardware.apple.touchBar.package = pkgs.tiny-dfr; + # Asahi Cachix + nix.settings = { + extra-substituters = [ + "https://nixos-apple-silicon.cachix.org" + ]; + extra-trusted-public-keys = [ + "nixos-apple-silicon.cachix.org-1:8psDu5SA5dAD7qA0zMy5UT292TxeEPzIz8VVEr2Js20=" + ]; + }; + # Bootloader. boot.loader.systemd-boot.enable = true; boot.loader.efi.canTouchEfiVariables = false;