Commit 32884796 authored by Jörg Thalheim's avatar Jörg Thalheim
Browse files

nixos/envfs: make mounts non-critical

We usually don't want to bring the whole machine into emergency mode
just because we couldn't mount envfs. It's usually not on the critical
path.
parent 47762292
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 {