blob: aab20b1871c14715fbcd2d0442eb4f48509791e3 (
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
28
29
30
31
32
33
|
{
config,
lib,
pkgs,
modulesPath,
...
}: {
imports = [
(modulesPath + "/installer/scan/not-detected.nix") # TODO is this necessary?
(modulesPath + "/profiles/qemu-guest.nix")
./cpu.nix
./gpu.nix
];
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
system.fileSystemLayouts = {
enable = true;
mainDisk = "/dev/disk/by-uuid/c0382dda-1f55-4209-967d-b8b22cb0f6e1";
efiDisk = "/dev/disk/by-uuid/167D-2F0B";
ssd = true;
swap = {
uuid = "c0382dda-1f55-4209-967d-b8b22cb0f6e1";
resumeOffset = "140544";
};
};
boot = {
kernelModules = [];
initrd.availableKernelModules = ["ahci" "xhci_pci" "virtio_pci" "sr_mod" "virtio_blk"];
};
}
|