mirror of
https://github.com/genebean/dots.git
synced 2026-03-27 09:27:44 -04:00
12 lines
215 B
Nix
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"
|
|
];
|
|
};
|
|
};
|
|
}
|