flake/hosts/aristotle/hardware-configuration.nix

19 lines
486 B
Nix
Raw Normal View History

{inputs, ...}: {
2023-12-18 06:20:44 +00:00
imports = [
inputs.nixpkgs.nixosModules.notDetected
2023-12-18 06:20:44 +00:00
inputs.nixos-hardware.nixosModules.lenovo-legion-y530-15ich
];
services.hdapsd.enable = false;
myFlake.hardware.components = {
audio.enable = true;
bluetooth.enable = true;
tpm.enable = true;
};
boot.initrd.availableKernelModules = ["xhci_pci" "ahci" "nvme" "usbhid"];
boot.kernelModules = ["kvm-intel"];
nixpkgs.hostPlatform = "x86_64-linux";
2024-01-14 04:04:08 +00:00
system.stateVersion = "23.11";
2023-12-18 06:20:44 +00:00
}