dotfiles.nix/home/modules/nix/pkgs-config.nix

9 lines
183 B
Nix

{
self,
overlays,
...
}: {
nixpkgs.config.allowUnfreePredicate = _: true;
nixpkgs.config.allowUnsupportedSystem = true;
nixpkgs.overlays = builtins.attrValues overlays;
}