summaryrefslogtreecommitdiffstats
path: root/nixos/modules/installer/netboot/netboot.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/netboot/netboot.nix
parentb07602a604d6d5db3b1ff85d1c3c008ad25245fa (diff)
treewide: Use `fileSystems.<name>.depends` option where necessary
Diffstat (limited to 'nixos/modules/installer/netboot/netboot.nix')
-rw-r--r--nixos/modules/installer/netboot/netboot.nix6
1 files changed, 6 insertions, 0 deletions
diff --git a/nixos/modules/installer/netboot/netboot.nix b/nixos/modules/installer/netboot/netboot.nix
index fa074fdfcc6e..238ab6d0617b 100644
--- a/nixos/modules/installer/netboot/netboot.nix
+++ b/nixos/modules/installer/netboot/netboot.nix
@@ -57,6 +57,12 @@ with lib;
"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" "overlay" ];