summaryrefslogtreecommitdiff
path: root/modules/envfs.nix
diff options
context:
space:
mode:
authorgkleen@yggdrasil.li <Gregor Kleen>2024-07-30 13:50:45 +0200
committergkleen@yggdrasil.li <Gregor Kleen>2024-07-30 13:50:45 +0200
commit7d450db6680aed0cead1630a5f3c9be1573536e4 (patch)
treefea183c1afa18af92f7c37fd6501b256b1989ca8 /modules/envfs.nix
parentdf628d9ec03ab92bc2269f90192e60405a4223a8 (diff)
downloadnixos-7d450db6680aed0cead1630a5f3c9be1573536e4.tar
nixos-7d450db6680aed0cead1630a5f3c9be1573536e4.tar.gz
nixos-7d450db6680aed0cead1630a5f3c9be1573536e4.tar.bz2
nixos-7d450db6680aed0cead1630a5f3c9be1573536e4.tar.xz
nixos-7d450db6680aed0cead1630a5f3c9be1573536e4.zip
...
Diffstat (limited to 'modules/envfs.nix')
-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" = {