40 lines
700 B
Nix
40 lines
700 B
Nix
{ lib, modulesPath, ... }:
|
|
{
|
|
imports = [
|
|
(modulesPath + "/profiles/qemu-guest.nix")
|
|
];
|
|
|
|
boot = {
|
|
initrd = {
|
|
availableKernelModules = [
|
|
"ata_piix"
|
|
"virtio_pci"
|
|
"virtio_scsi"
|
|
"virtio_blk"
|
|
"xhci_pci"
|
|
"sr_mod"
|
|
];
|
|
kernelModules = [ ];
|
|
};
|
|
kernelModules = [ ];
|
|
extraModulePackages = [ ];
|
|
};
|
|
|
|
fileSystems = {
|
|
"/" = {
|
|
device = "none";
|
|
fsType = "tmpfs";
|
|
options = [
|
|
"defaults"
|
|
"size=2G"
|
|
"mode=755"
|
|
];
|
|
};
|
|
};
|
|
|
|
fileSystems."/nix".neededForBoot = true;
|
|
fileSystems."/persist".neededForBoot = true;
|
|
|
|
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
|
|
}
|