nix/shared/nixpkgs.nix
2024-06-17 17:53:23 +02:00

12 lines
199 B
Nix

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