Merge pull request #230641 from Mic92/envfs

nixos/envfs: make mounts non-critical
This commit is contained in:
Jörg Thalheim
2023-05-08 13:15:52 +01:00
committed by GitHub
+2 -1
View File
@@ -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 {