infrastructure/nixos/base/nixpkgs.nix
2024-03-17 15:23:20 -07:00

14 lines
259 B
Nix

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