nixos-config/modules/home-manager/profiles/research.nix

31 lines
1.1 KiB
Nix
Raw Normal View History

2021-12-08 04:18:37 +00:00
{ config, options, lib, pkgs, ... }:
let cfg = config.profiles.research;
2021-12-08 04:18:37 +00:00
in {
options.profiles.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; [
anki # Rise, rinse, and repeat.
#archivebox # The ultimate archiving solution created by a pirate!
2021-12-08 04:18:37 +00:00
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.
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.
wget # Who would've think a simple tool can be made for this purpose?
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.
];
services.syncthing.enable = true;
xdg.mimeApps.defaultApplications = {
"application/vnd.anki" = [ "anki.desktop" ];
};
2021-12-08 04:18:37 +00:00
};
}