2021-11-23 11:47:06 +00:00
|
|
|
{ config, lib, pkgs, modulesPath, ... }:
|
|
|
|
|
2021-11-23 10:43:25 +00:00
|
|
|
{
|
|
|
|
imports = [
|
|
|
|
./config.nix
|
2021-11-23 11:47:06 +00:00
|
|
|
(modulesPath + "/profiles/qemu-guest.nix")
|
2021-11-23 10:43:25 +00:00
|
|
|
];
|
|
|
|
|
2021-11-23 11:47:06 +00:00
|
|
|
boot.initrd.availableKernelModules = [ "ata_piix" "virtio_pci" "xhci_pci" "sd_mod" "sr_mod" ];
|
|
|
|
boot.initrd.kernelModules = [ ];
|
|
|
|
boot.kernelModules = [ ];
|
|
|
|
boot.extraModulePackages = [ ];
|
|
|
|
boot.loader.grub.devices = [ "/dev/sda" ];
|
2021-11-23 10:43:25 +00:00
|
|
|
|
2021-11-23 11:47:06 +00:00
|
|
|
fileSystems."/" =
|
|
|
|
{ device = "/dev/disk/by-uuid/84053adc-49bc-4e02-8a19-3838bf3a43fd";
|
|
|
|
fsType = "ext4";
|
|
|
|
};
|
2021-11-23 10:43:25 +00:00
|
|
|
|
2021-11-23 11:47:06 +00:00
|
|
|
swapDevices = [ ];
|
2021-11-23 10:43:25 +00:00
|
|
|
}
|