nix-infra/config/common/default-host-platform.nix

11 lines
246 B
Nix
Raw Normal View History

# Set a default host platform.
# Sources for this configuration:
# - a generated NixOS 23.05 configuration
{ config, pkgs, lib, ... }:
{
# Set a default host platform for good measure.
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
}