Files
nix-dotfiles-v2/modules/nixpkgs.nix
T
Your Name 4103266918 fixes
2026-05-11 11:28:50 +02:00

21 lines
265 B
Nix

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