nix/moduler/nixpkgs.nix
2025-09-06 13:18:48 +02:00

12 lines
201 B
Nix

{ pkgs, lib, ... }:
{
nixpkgs = {
# Configure your nixpkgs instance
config = {
allowUnfree = true;
permittedInsecurePackages = [
"electron-33.4.11"
];
};
};
}