dots/lib/nixpkgs-settings.nix
2025-12-01 10:41:45 -05:00

12 lines
215 B
Nix

{ inputs, ... }: {
nixpkgs = {
config = {
allowUnfree = true;
permittedInsecurePackages = [
"electron-27.3.11"
"olm-3.2.16"
"python3.12-ecdsa-0.19.1"
];
};
};
}