mirror of
https://github.com/EdenQwQ/nixos.git
synced 2026-01-08 20:27:41 +08:00
14 lines
269 B
Nix
14 lines
269 B
Nix
{ self, ... }:
|
|
{
|
|
nixpkgs = {
|
|
config = {
|
|
allowUnfree = true;
|
|
permittedInsecurePackages = [
|
|
"openssl-1.1.1w"
|
|
"electron-19.1.9"
|
|
];
|
|
allowUnsupportedSystem = true;
|
|
};
|
|
overlays = builtins.attrValues self.overlays;
|
|
};
|
|
}
|