blob: 6bc88e209de45bb07abf190886d3225f93a7c223 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
{modulesPath, ...}: {
imports = [
(modulesPath + "/installer/scan/not-detected.nix") # TODO is this necessary?
./cpu.nix
./gpu.nix
];
nixpkgs.hostPlatform = "x86_64-linux";
hardware.bluetooth.enable = true;
soispha.disks = {
enable = true;
disk = "/dev/disk/by-id/nvme-INTEL_SSDPEKNU512GZH_PHKA1481032A512A_1";
ssd = true;
swap = {
uuid = "c94cd20a-dd3c-436f-9841-6fe92e5c8719";
resumeOffset = "533760";
};
};
boot = {
kernelModules = ["kvm-intel" "rtw89"];
initrd.availableKernelModules = ["xhci_pci" "vmd" "nvme" "usb_storage" "sd_mod" "rtsx_pci_sdmmc"];
};
}
|