marleyos/home/curl/default.nix

12 lines
166 B
Nix
Raw Normal View History

2024-10-26 20:31:39 -07:00
{pkgs, ...}: {
home.packages = with pkgs; [
curl
];
xdg.configFile.".curlrc" = {
enable = true;
source = ./.curlrc;
target = ".curlrc";
};
}