2022-02-03 21:21:17 +02:00
|
|
|
|
# Do not modify this file! It was generated by ‘nixos-generate-config’
|
|
|
|
|
# and may be overwritten by future invocations. Please make changes
|
|
|
|
|
# to /etc/nixos/configuration.nix instead.
|
2022-10-17 15:54:48 +03:00
|
|
|
|
{ modulesPath, ... }:
|
2022-02-03 21:21:17 +02:00
|
|
|
|
|
|
|
|
|
{
|
|
|
|
|
imports =
|
|
|
|
|
[ (modulesPath + "/profiles/qemu-guest.nix")
|
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
boot.initrd.availableKernelModules = [ "virtio_pci" "usbhid" ];
|
|
|
|
|
boot.initrd.kernelModules = [ ];
|
|
|
|
|
boot.kernelModules = [ ];
|
|
|
|
|
boot.extraModulePackages = [ ];
|
|
|
|
|
|
|
|
|
|
fileSystems."/" =
|
2023-02-28 23:59:55 +02:00
|
|
|
|
{ device = "/dev/disk/by-partlabel/rootfs";
|
2022-02-03 21:21:17 +02:00
|
|
|
|
fsType = "xfs";
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
fileSystems."/boot" =
|
2023-02-28 23:59:55 +02:00
|
|
|
|
{ device = "/dev/disk/by-partlabel/boot";
|
2022-02-03 21:21:17 +02:00
|
|
|
|
fsType = "vfat";
|
|
|
|
|
};
|
|
|
|
|
}
|