puter/hosts/headful/flamingo/hardware.nix

24 lines
455 B
Nix
Raw Normal View History

2024-12-01 03:05:16 +00:00
{
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";
2024-12-01 04:28:25 +00:00
services.xserver.xkb.layout = "de";
2024-12-01 03:05:16 +00:00
}