From e6ed60548397627bf10f561f9438201dbba0a36e Mon Sep 17 00:00:00 2001 From: Azat Bahawi Date: Sun, 21 Apr 2024 02:15:42 +0300 Subject: 2024-04-21 --- modules/curl.nix | 38 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100644 modules/curl.nix (limited to 'modules/curl.nix') diff --git a/modules/curl.nix b/modules/curl.nix new file mode 100644 index 0000000..6895262 --- /dev/null +++ b/modules/curl.nix @@ -0,0 +1,38 @@ +{ + config, + lib, + pkgs, + ... +}: +with lib; +let + cfg = config.nixfiles.modules.curl; +in +{ + options.nixfiles.modules.curl.enable = mkEnableOption "cURL"; + + config = mkIf cfg.enable { + hm.xdg.configFile.".curlrc".text = '' + connect-timeout = 60 + progress-bar + remote-time + show-error + ''; + + environment.systemPackages = with pkgs; [ + curl + (writeShellScriptBin "0x0" '' + url="https://0x0.st" + form="file=@" + + if [ -t 0 ] && [ -n "$1" ]; then + form="$form$1" + else + form="$form-" + fi + + ${getExe curl} --form "$form" "$url" + '') + ]; + }; +} -- cgit v1.2.3