summary refs log tree commit diff
path: root/nixos/modules/installer/cd-dvd/iso-image.nix
diff options
context:
space:
mode:
authorjakobrs <jakobrs100@gmail.com>2021-06-08 18:52:02 +0200
committerjakobrs <jakobrs100@gmail.com>2021-06-08 18:52:02 +0200
commitea34fe21e18f87dc8b333672f23edf2bcee98cd7 (patch)
treed63e5d79298cf840e9a3d86b2847bbd9effa877c /nixos/modules/installer/cd-dvd/iso-image.nix
parentb07602a604d6d5db3b1ff85d1c3c008ad25245fa (diff)
downloadnixpkgs-ea34fe21e18f87dc8b333672f23edf2bcee98cd7.tar
nixpkgs-ea34fe21e18f87dc8b333672f23edf2bcee98cd7.tar.gz
nixpkgs-ea34fe21e18f87dc8b333672f23edf2bcee98cd7.tar.bz2
nixpkgs-ea34fe21e18f87dc8b333672f23edf2bcee98cd7.tar.lz
nixpkgs-ea34fe21e18f87dc8b333672f23edf2bcee98cd7.tar.xz
nixpkgs-ea34fe21e18f87dc8b333672f23edf2bcee98cd7.tar.zst
nixpkgs-ea34fe21e18f87dc8b333672f23edf2bcee98cd7.zip
treewide: Use `fileSystems.<name>.depends` option where necessary
Diffstat (limited to 'nixos/modules/installer/cd-dvd/iso-image.nix')
-rw-r--r--nixos/modules/installer/cd-dvd/iso-image.nix6
1 files changed, 6 insertions, 0 deletions
diff --git a/nixos/modules/installer/cd-dvd/iso-image.nix b/nixos/modules/installer/cd-dvd/iso-image.nix
index c2836b5a9a1..4e5d888c4bb 100644
--- a/nixos/modules/installer/cd-dvd/iso-image.nix
+++ b/nixos/modules/installer/cd-dvd/iso-image.nix
@@ -680,6 +680,12 @@ in
           "upperdir=/nix/.rw-store/store"
           "workdir=/nix/.rw-store/work"
         ];
+
+        depends = [
+          "/nix/.ro-store"
+          "/nix/.rw-store/store"
+          "/nix/.rw-store/work"
+        ];
       };
 
     boot.initrd.availableKernelModules = [ "squashfs" "iso9660" "uas" "overlay" ];