puter/hosts/headful/flamingo/hardware.nix
2025-01-09 00:15:30 +01:00

24 lines
455 B
Nix

{
inputs,
modulesPath,
...
}: {
imports = [
"${modulesPath}/installer/scan/not-detected.nix"
inputs.hardware.nixosModules.lenovo-thinkpad-t480
];
nixpkgs.hostPlatform = "x86_64-linux";
boot = {
initrd.availableKernelModules = ["xhci_pci" "nvme" "usb_storage" "sd_mod"];
kernelModules = ["kvm-intel"];
};
powerManagement.cpuFreqGovernor = "powersave";
console.keyMap = "de";
services.xserver.xkb.layout = "de";
}