dotfiles.nix/home-manager/modules/nixpkgs.nix

11 lines
195 B
Nix

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