infrastructure/nixos/base/nixpkgs.nix
2024-01-27 20:50:01 -08:00

17 lines
261 B
Nix

{
inputs,
...
}: {
nixpkgs = {
overlays = [
(import ../../overlays/local)
inputs.arcexprs.overlays.default
];
config = {
allowUnfree = true;
permittedInsecurePackages = [
"openssl-1.1.1w"
];
};
};
}