diff --git a/nix/modules/machine/platform.nix b/nix/modules/machine/platform.nix index 62db2d1..a1c5b05 100644 --- a/nix/modules/machine/platform.nix +++ b/nix/modules/machine/platform.nix @@ -11,5 +11,10 @@ boot.kernelModules = [ "kvm-${platform}" ]; nixpkgs.hostPlatform = "${arch}-linux"; }; - flake.modules.darwin.default.nixpkgs.hostPlatform = "x86_64-darwin"; + + flake.modules.darwin.default.nixpkgs = { + hostPlatform = "x86_64-darwin"; + config.allowUnsupportedSystem = true; + }; + }