nix/moduler/nixpkgs.nix
fwastring 3d26de29d3 boot
2025-11-12 16:34:43 +01:00

12 lines
200 B
Nix

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