blob: e9766f057d45745e0fd89825c7fa26e3155b22c4 (
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
|
{
config,
lib,
pkgs,
modulesPath,
...
}: {
imports = [
(modulesPath + "/installer/scan/not-detected.nix")
./cpu.nix
./gpu.nix
];
nixpkgs.hostPlatform = "x86_64-linux";
system.fileSystemLayouts = {
enable = true;
mainDisk = "/dev/disk/by-uuid/b1974623-df36-4367-bf12-c0778cd8ff33";
efiDisk = "/dev/disk/by-uuid/201D-E6E7";
};
boot = {
kernelModules = ["kvm-amd"];
initrd.availableKernelModules = ["xhci_pci" "ahci" "ehci_pci" "sd_mod" "sr_mod" "sdhci_pci"];
};
}
|