os/modules/compat/default.nix

13 lines
234 B
Nix
Raw Normal View History

2022-11-20 22:28:23 +00:00
{
config,
pkgs,
lib,
...
}:
with lib; {
2021-05-30 19:10:28 +00:00
# Both things below are for
# https://github.com/NixOS/nixpkgs/issues/124215
documentation.info.enable = lib.mkForce false;
2022-11-20 22:28:23 +00:00
nix.sandboxPaths = ["/bin/sh=${pkgs.bash}/bin/sh"];
2021-05-30 19:10:28 +00:00
}