2021-12-08 04:18:37 +00:00
|
|
|
{ config, options, lib, pkgs, ... }:
|
|
|
|
|
2021-12-11 05:16:45 +00:00
|
|
|
let cfg = config.modules.research;
|
2021-12-08 04:18:37 +00:00
|
|
|
in {
|
2021-12-11 05:16:45 +00:00
|
|
|
options.modules.research.enable =
|
|
|
|
lib.mkEnableOption "my usual toolbelt for research";
|
2021-12-08 04:18:37 +00:00
|
|
|
|
|
|
|
config = lib.mkIf cfg.enable {
|
|
|
|
home.packages = with pkgs; [
|
2021-12-11 05:16:45 +00:00
|
|
|
archivebox # The ultimate archiving solution created by a pirate!
|
2021-12-08 04:18:37 +00:00
|
|
|
curl # The general purpose downloader.
|
2021-12-11 05:16:45 +00:00
|
|
|
fanficfare # It's for the badly written fanfics.
|
|
|
|
internetarchive # All of the potential vintage collection of questionable materials at your fingertips.
|
2021-12-08 04:18:37 +00:00
|
|
|
newsboat # Reading news easily on the command line?
|
|
|
|
qbittorrent # The pirate's toolkit for downloading Linux ISOs.
|
2021-12-13 07:20:34 +00:00
|
|
|
yt-dlp # The general purpose video downloader.
|
2021-12-08 04:18:37 +00:00
|
|
|
zotero # It's actually good at archiving despite not being a researcher myself.
|
|
|
|
];
|
|
|
|
};
|
|
|
|
}
|