infrastructure/nixos/base/nixpkgs.nix
arcnmx e47c3fefb3 fix: update mongodb
it's broken in upstream nixpkgs
2024-04-16 07:52:10 -07:00

17 lines
304 B
Nix

{inputs, ...}: let
inherit (inputs.self) overlays;
in {
nixpkgs = {
overlays = [
inputs.arcexprs.overlays.default
overlays.default
overlays.unifi
];
config = {
allowUnfree = true;
permittedInsecurePackages = [
"openssl-1.1.1w"
];
};
};
}