18 lines
232 B
Nix
18 lines
232 B
Nix
{ ... }:
|
|
{
|
|
imports = [ ./display.nix ];
|
|
|
|
hardware = {
|
|
enableAllFirmware = true;
|
|
|
|
cpu = {
|
|
cores = 12;
|
|
threads = 12;
|
|
};
|
|
};
|
|
|
|
virtualisation.hypervGuest.enable = true;
|
|
|
|
services.fstrim.enable = true;
|
|
}
|