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
commit 3228c83963
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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 {