marleyos/home/curl/default.nix

12 lines
166 B
Nix
Raw Normal View History

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