dotfiles/nixos/home-manager/scripts/download.nix

14 lines
264 B
Nix
Raw Normal View History

2021-07-30 23:31:50 +01:00
{ config, pkgs, ... }:
let
download = pkgs.writeTextFile {
name = "download";
executable = true;
destination = "/bin/download";
text = ''
${pkgs.aria}/bin/aria2c -x 16 -s 16 $@
'';
};
2022-03-10 12:25:23 +00:00
in { home.packages = with pkgs; [ download ]; }