mirror of
https://github.com/genebean/dots.git
synced 2026-03-27 17:37:43 -04:00
13 lines
277 B
Nix
13 lines
277 B
Nix
{ inputs, ... }: {
|
|
nixpkgs = {
|
|
config = {
|
|
allowUnfree = true;
|
|
permittedInsecurePackages = [
|
|
"electron-27.3.11"
|
|
"olm-3.2.16"
|
|
"python3.12-ecdsa-0.19.1"
|
|
];
|
|
};
|
|
overlays = [ inputs.nixpkgs-terraform.overlays.default ];
|
|
};
|
|
}
|