nixos-config/system/nix/nixpkgs.nix

10 lines
127 B
Nix

{
self,
super,
root,
}: {
nixpkgs = {
config.allowUnfree = true;
config.permittedInsecurePackages = [];
};
}