pub-solar-os/modules/compat/default.nix

7 lines
228 B
Nix
Raw Normal View History

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