else
"/nix/store";
-in mkMerge [
- {
-
- boot.initrd.availableKernelModules = [ "squashfs" ];
-
- fileSystems = mkVMOverride {
- "${storeMountPath}" = {
- device =
- lookupDriveDeviceName "nixstore" config.virtualisation.qemu.drives;
- fsType = "squashfs";
- options = [ "ro" ];
- neededForBoot = true;
- };
+in {
+
+ boot.initrd.availableKernelModules = [ "squashfs" ];
+
+ fileSystems = mkVMOverride {
+ "${storeMountPath}" = {
+ device =
+ lookupDriveDeviceName "nixstore" config.virtualisation.qemu.drives;
+ fsType = "squashfs";
+ options = [ "ro" ];
+ neededForBoot = true;
};
+ };
- system.build.squashfsStore =
- pkgs.callPackage (modulesPath + "/../lib/make-squashfs.nix") {
- storeContents = config.virtualisation.additionalPaths;
- };
+ system.build.squashfsStore =
+ pkgs.callPackage (modulesPath + "/../lib/make-squashfs.nix") {
+ storeContents = config.virtualisation.additionalPaths;
+ };
- virtualisation = {
+ virtualisation = {
- sharedDirectories = mkForce { };
+ sharedDirectories = mkForce { };
- qemu.drives = [{
- name = "nixstore";
- file = "${config.system.build.squashfsStore}";
- driveExtraOpts = {
- format = "raw";
- read-only = "on";
- werror = "report";
- };
- }];
+ qemu.drives = [{
+ name = "nixstore";
+ file = "${config.system.build.squashfsStore}";
+ driveExtraOpts = {
+ format = "raw";
+ read-only = "on";
+ werror = "report";
+ };
+ }];
- };
- }
- (mkIf (lib.version < "23.05") {
- # This should always have been the default.
- virtualisation.bootDevice =
- lookupDriveDeviceName "root" config.virtualisation.qemu.drives;
- })
-]
+ };
+}