summaryrefslogtreecommitdiff
path: root/modules/nixfiles/wget.nix
blob: 9e4db2795c10950048142f0fb738f57d2f871cec (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
{
  config,
  lib,
  pkgs,
  ...
}:
with lib; let
  cfg = config.nixfiles.modules.wget;
in {
  options.nixfiles.modules.wget.enable =
    mkEnableOption "Whether to enable wget.";

  config = mkIf cfg.enable {
    hm = {
      home.file.".wgetrc".text = ''
        adjust_extension = on
        dirstruct = off
        follow_ftp = on
        passive_ftp = off
        progress = bar
        quota = inf
        reclevel = 5
        recursive = off
        robots = off
        timestamping = off
        tries = 5
        wait = 0
        waitretry = 10
      '';

      programs.bash.shellAliases.wget = "${pkgs.wget}/bin/wget --hsts-file=${config.hm.xdg.cacheHome}/wget-hsts";
    };

    environment.systemPackages = with pkgs; [wget];
  };
}