marleyos/modules/home/programs/wget.nix
2025-05-31 13:54:34 -07:00

48 lines
1.2 KiB
Nix

{
marleylib,
lib,
config,
osConfig,
pkgs,
...
}: let
inherit (marleylib.module) mkEnableOption';
cfg = config.marleyos.programs.wget;
osCfg = osConfig.marleyos.programs.wget;
in {
options.marleyos.programs.wget.enable = mkEnableOption' "wget" osCfg.enable;
config = lib.mkIf cfg.enable {
home.packages = with pkgs; [
wget
];
xdg.configFile."wgetrc".text =
# wget
''
# Use the server-provided last modification date, if available.
timestamping = on
# Wait 60 seconds before timing out.
timeout = 60
# Retry a few times when a download fails, but don't overdo it (the default is
# 20!).
tries = 3
# Retry even when the connection was refused.
retry_connrefused = on
# Use the last component of a redirection URL for the local file name.
trust_server_names = on
# Disguise as IE 9 on Windows 7.
user_agent = Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0)
'';
home.sessionVariables = lib.mkIf config.home.preferXdgDirectories {
WGETRC = "${config.xdg.configHome}/wgetrc";
};
};
}