summaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
Diffstat (limited to 'modules')
-rw-r--r--modules/envfs.nix2
1 files changed, 2 insertions, 0 deletions
diff --git a/modules/envfs.nix b/modules/envfs.nix
index 83cad8d0..ff992b61 100644
--- a/modules/envfs.nix
+++ b/modules/envfs.nix
@@ -7,10 +7,12 @@ let
7 device = "none"; 7 device = "none";
8 fsType = "envfs"; 8 fsType = "envfs";
9 options = [ 9 options = [
10 "bind-mount=/bin"
10 "fallback-path=${pkgs.symlinkJoin { 11 "fallback-path=${pkgs.symlinkJoin {
11 name = "fallback-path"; 12 name = "fallback-path";
12 inherit (cfg) paths; 13 inherit (cfg) paths;
13 }}" 14 }}"
15 "nofail"
14 ]; 16 ];
15 }; 17 };
16 "/bin" = { 18 "/bin" = {