mirror of
https://github.com/gensokyo-zone/infrastructure.git
synced 2026-02-09 04:19:19 -08:00
13 lines
219 B
Nix
13 lines
219 B
Nix
{inputs, ...}: {
|
|
nixpkgs = {
|
|
overlays = [
|
|
inputs.arcexprs.overlays.default
|
|
];
|
|
config = {
|
|
allowUnfree = true;
|
|
permittedInsecurePackages = [
|
|
"openssl-1.1.1w"
|
|
];
|
|
};
|
|
};
|
|
}
|