35 lines
856 B
Nix
35 lines
856 B
Nix
|
{inputs, ...}: {
|
||
|
imports = [
|
||
|
inputs.nixpkgs.nixosModules.notDetected
|
||
|
inputs.nixos-hardware.nixosModules.lenovo-thinkpad-x1-12th-gen
|
||
|
];
|
||
|
|
||
|
services.hdapsd.enable = false;
|
||
|
services.thermald.enable = true;
|
||
|
|
||
|
security.rtkit.enable = true;
|
||
|
hardware.pulseaudio.enable = false;
|
||
|
services.pipewire = {
|
||
|
enable = true;
|
||
|
alsa.enable = true;
|
||
|
alsa.support32Bit = true;
|
||
|
pulse.enable = true;
|
||
|
jack.enable = true;
|
||
|
};
|
||
|
|
||
|
hardware.bluetooth = {
|
||
|
enable = true;
|
||
|
settings.General.FastConnectable = true;
|
||
|
};
|
||
|
|
||
|
boot.loader.timeout = 0;
|
||
|
boot.loader.efi.canTouchEfiVariables = true;
|
||
|
|
||
|
boot.initrd.availableKernelModules = ["xhci_pci" "thunderbolt" "nvme" "usb_storage" "sd_mod"];
|
||
|
boot.initrd.kernelModules = [];
|
||
|
boot.kernelModules = ["kvm-intel"];
|
||
|
boot.extraModulePackages = [];
|
||
|
|
||
|
nixpkgs.hostPlatform = "x86_64-linux";
|
||
|
}
|