Guanran Wang
8ee5e9dd3e
- Following RFC 952 and RFC 1123. Hostnames are not case-sensitive; however, uppercase letters were typically avoided to enhance readability. - I accidentally rm -rf'ed ./git, had to re-commit everything
18 lines
486 B
Nix
18 lines
486 B
Nix
{inputs, ...}: {
|
|
imports = [
|
|
inputs.nixpkgs.nixosModules.notDetected
|
|
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";
|
|
system.stateVersion = "23.11";
|
|
}
|