16 lines
198 B
Nix
16 lines
198 B
Nix
{ ... }:
|
|
{
|
|
imports = [ ./display.nix ];
|
|
|
|
hardware = {
|
|
enableAllFirmware = true;
|
|
|
|
cpu = {
|
|
cores = 14;
|
|
threads = 14;
|
|
};
|
|
};
|
|
|
|
virtualisation.hypervGuest.enable = true;
|
|
}
|