flake/hosts/aristotle/hardware-configuration.nix
Guanran Wang 8ee5e9dd3e
hosts: rename hostnames to lowercase
- 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
2024-02-11 22:10:03 +08:00

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";
}