nixos-config/users/home-manager/foo-dogsquared/modules/programs/research.nix

34 lines
1.3 KiB
Nix
Raw Normal View History

{ config, lib, pkgs, ... }:
2021-12-08 04:18:37 +00:00
let
userCfg = config.users.foo-dogsquared;
cfg = userCfg.programs.research;
2021-12-08 04:18:37 +00:00
in {
options.users.foo-dogsquared.programs.research.enable =
lib.mkEnableOption "foo-dogsquared's 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.
2023-09-21 03:38:21 +00:00
kiwix # Offline reader for your fanon wiki.
monolith # Archive webpages into a single file.
2021-12-08 04:18:37 +00:00
qbittorrent # The pirate's toolkit for downloading Linux ISOs.
2023-09-19 09:15:34 +00:00
sherlock # Make a profile of your *target*.
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
};
}