dotfiles.nix/home-manager/modules/custom/nixpkgs.nix
2023-03-24 09:48:27 -07:00

11 lines
195 B
Nix

{
home.file = {
".config/nixpkgs/config.nix".text = ''
# -*-nix-*-
{
nixpkgs.config.allowUnfreePredicate = (_: true);
allowUnfree = true;
}
'';
};
}