Unverified Commit 3228c839 authored by Jörg Thalheim's avatar Jörg Thalheim Committed by GitHub
Browse files

Merge pull request #230641 from Mic92/envfs

nixos/envfs: make mounts non-critical
parents 75fc2580 32884796
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -12,12 +12,13 @@ let
          ln -s ${config.environment.usrbinenv} $out/env
          ln -s ${config.environment.binsh} $out/sh
        '' + cfg.extraFallbackPathCommands)}"
        "nofail"
      ];
    };
    "/bin" = {
      device = "/usr/bin";
      fsType = "none";
      options = [ "bind" ];
      options = [ "bind" "nofail" ];
    };
  };
in {