nixos-config/system/nix/nixpkgs.nix
2024-02-07 19:05:44 +01:00

6 lines
110 B
Nix

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