20 lines
224 B
Nix
20 lines
224 B
Nix
{
|
|
config,
|
|
pkgs,
|
|
lib,
|
|
...
|
|
}:
|
|
|
|
{
|
|
imports = [ ];
|
|
|
|
nixpkgs = {
|
|
config = {
|
|
allowUnfree = true;
|
|
permittedInsecurePackages = [
|
|
# example "python3.11-youtube-dl-2021.12.17"
|
|
];
|
|
};
|
|
};
|
|
}
|