mirror of
https://github.com/EdenQwQ/nixos.git
synced 2026-05-11 17:35:56 +08:00
15 lines
295 B
Nix
15 lines
295 B
Nix
{ self, ... }:
|
|
{
|
|
nixpkgs = {
|
|
config = {
|
|
allowUnfree = true;
|
|
permittedInsecurePackages = [
|
|
"openssl-1.1.1w"
|
|
"electron-19.1.9"
|
|
"electron-36.9.5"
|
|
];
|
|
allowUnsupportedSystem = true;
|
|
};
|
|
overlays = builtins.attrValues self.overlays;
|
|
};
|
|
}
|