Files
nix-dotfiles-v2/modules/nixpkgs.nix
2026-01-02 22:41:52 +01:00

20 lines
224 B
Nix

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