feat(darwin): Allow unsupported systems for darwin

This commit is contained in:
Mohammad Rafiq 2025-07-14 00:49:01 +08:00
parent a53868c454
commit c1100a67eb
No known key found for this signature in database

View file

@ -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;
};
}