reorganize hardware

This commit is contained in:
Reid 2026-04-30 17:15:54 -07:00
parent 0d9381864c
commit eecae7fd24
Signed by: reidlab
GPG key ID: DAF5EAF6665839FD
8 changed files with 76 additions and 54 deletions

View file

@ -4,7 +4,8 @@
imports =
[
inputs.hardware.nixosModules.apple-t2
inputs.hardware.nixosModules.common-cpu-intel
(inputs.hardware + "/common/cpu/intel/ice-lake.nix")
(inputs.hardware + "/common/gpu/intel/ice-lake.nix")
inputs.hardware.nixosModules.common-pc-laptop-ssd
inputs.hardware.nixosModules.common-pc-laptop
@ -21,6 +22,14 @@
boot.loader.systemd-boot.enable = true;
boot.loader.efi.canTouchEfiVariables = true;
modules.hardware = {
graphics.i915.enable = true;
audio.enable = true;
bluetooth.enable = true;
networking.enable = true;
pointer.enable = true;
};
fileSystems."/" =
{ device = "/dev/disk/by-uuid/0f09afdc-88e4-4764-818b-77828931278f";
fsType = "ext4";