{ pkgs, ... }:
{
home.packages = with pkgs; [
curl
];
xdg.configFile.".curlrc" = {
enable = true;
source = ./.curlrc;
target = ".curlrc";
};
}