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

23 lines
841 B
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; [
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.
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.
];
services.syncthing.enable = true;
2021-12-08 04:18:37 +00:00
};
}