29 lines
382 B
Nix
29 lines
382 B
Nix
{ ... }:
|
|
{
|
|
imports = [
|
|
./display.nix
|
|
./keybinds.nix
|
|
];
|
|
|
|
hardware = {
|
|
enableAllFirmware = true;
|
|
|
|
cpu = {
|
|
cores = 8;
|
|
threads = 12;
|
|
intel.updateMicrocode = true;
|
|
};
|
|
};
|
|
|
|
boot = {
|
|
kernelModules = [ "kvm-intel" ];
|
|
initrd.kernelModules = [
|
|
"thunderbolt"
|
|
"vmd"
|
|
"nvme"
|
|
];
|
|
};
|
|
|
|
services.fstrim.enable = true;
|
|
}
|