nixos/modules/hardware/chn-PC.nix

12 lines
229 B
Nix
Raw Normal View History

{
config =
{
nix.settings.system-features = [ "gccarch-alderlake" ];
nixpkgs =
{
hostPlatform = { system = "x86_64-linux"; gcc = { arch = "alderlake"; tune = "alderlake"; }; };
config.allowUnfree = true;
};
};
}