nixos-config/modules/home-manager/profiles/research.nix
Gabriel Arazas 14f1f8c75f config: disable Archivebox
It is broken and it has been like that for a couple of months so we'll
just disable it completely. I mostly use the web UI with manual
management of archiving anyways.
2022-09-21 14:17:11 +08:00

26 lines
1.0 KiB
Nix

{ config, options, lib, pkgs, ... }:
let cfg = config.profiles.research;
in {
options.profiles.research.enable =
lib.mkEnableOption "my usual toolbelt for research";
config = lib.mkIf cfg.enable {
home.packages = with pkgs; [
#archivebox # The ultimate archiving solution created by a pirate!
curl # The general purpose downloader.
fanficfare # It's for the badly written fanfics.
gallery-dl # More potential for your image collection.
internetarchive # All of the potential vintage collection of questionable materials at your fingertips.
monolith # Archive webpages into a single file.
newsboat # Reading news easily on the command line?
qbittorrent # The pirate's toolkit for downloading Linux ISOs.
wget # Who would've think a simple tool can be made for this purpose?
yt-dlp # The general purpose video downloader.
zotero # It's actually good at archiving despite not being a researcher myself.
];
services.syncthing.enable = true;
};
}