diff options
Diffstat (limited to 'nix/hosts/pi2/default.nix')
-rw-r--r-- | nix/hosts/pi2/default.nix | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/nix/hosts/pi2/default.nix b/nix/hosts/pi2/default.nix index 939027f..6c8b2eb 100644 --- a/nix/hosts/pi2/default.nix +++ b/nix/hosts/pi2/default.nix @@ -33,15 +33,15 @@ # crossSystem = lib.systems.examples.raspberryPi; crossSystem = lib.systems.examples.armv7l-hf-multiplatform; # localSystem = { system = "x86_64-linux"; }; - localSystem = { system = "aarch64-darwin"; }; + localSystem = { + system = "aarch64-darwin"; + }; overlays = [ (final: super: { # Due to https://github.com/NixOS/nixpkgs/issues/154163#issuecomment-1350599022 - makeModulesClosure = x: - super.makeModulesClosure (x // { allowMissing = true; }); + makeModulesClosure = x: super.makeModulesClosure (x // { allowMissing = true; }); }) ]; }; system.stateVersion = "24.05"; } - |