blob: 3299f3ff21e45a7ef0fc3bf8469a5c76ab9958b2 (
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
|
{ modulesPath, ... }:
{
imports = [ (modulesPath + "/installer/scan/not-detected.nix") ];
boot = {
kernelModules = [ "kvm-intel" ];
blacklistedKernelModules = [ "nouveau" ];
initrd.availableKernelModules = [
"xhci_pci"
"ehci_pci"
"ahci"
"usb_storage"
"usbhid"
"sd_mod"
];
};
fileSystems = {
"/" = {
device = "/dev/disk/by-uuid/2eeacf49-c51e-4229-bd4a-ae437014725f";
fsType = "ext4";
};
"/boot" = {
device = "/dev/disk/by-uuid/A902-90BB";
fsType = "vfat";
};
"/hdd" = {
device = "/dev/disk/by-uuid/c941edb4-e393-4254-bbef-d1b3728290e9";
fsType = "ext4";
};
};
}
|