blob: 9188d85531d749bfa8142f52d832209fc75e9b08 (
plain)
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
|
{ modulesPath, ... }:
{
imports = [ (modulesPath + "/profiles/qemu-guest.nix") ];
boot = {
extraModulePackages = [ ];
kernelModules = [ ];
initrd = {
availableKernelModules = [
"virtio_pci"
"usbhid"
];
kernelModules = [ ];
};
};
fileSystems = {
"/" = {
device = "/dev/disk/by-uuid/f0c84809-83f5-414b-a973-496d25d74c6d";
fsType = "ext4";
};
"/boot" = {
device = "/dev/disk/by-uuid/A253-0826";
fsType = "vfat";
};
};
swapDevices = [ ];
}
|