mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-11-10 01:33:11 +01:00
16 lines
320 B
Nix
16 lines
320 B
Nix
{
|
|
config,
|
|
options,
|
|
lib,
|
|
...
|
|
}:
|
|
{
|
|
# Skip setting hostPlatform if it's read-only
|
|
nixpkgs =
|
|
lib.optionalAttrs
|
|
(config.hardware.facter.report.system or null != null && !options.nixpkgs.hostPlatform.readOnly)
|
|
{
|
|
hostPlatform = lib.mkDefault config.hardware.facter.report.system;
|
|
};
|
|
}
|