mirror of
https://github.com/gensokyo-zone/infrastructure.git
synced 2026-02-09 12:29:19 -08:00
16 lines
346 B
Nix
16 lines
346 B
Nix
{inputs, ...}: {
|
|
nixpkgs = {
|
|
overlays = [
|
|
inputs.arcexprs.overlays.default
|
|
(import ../../overlays/barcodebuddy.nix)
|
|
(import ../../overlays/samba.nix)
|
|
(import ../../overlays/nginx.nix)
|
|
];
|
|
config = {
|
|
allowUnfree = true;
|
|
permittedInsecurePackages = [
|
|
"openssl-1.1.1w"
|
|
];
|
|
};
|
|
};
|
|
}
|