mirror of
https://github.com/foo-dogsquared/nixos-config.git
synced 2025-01-31 10:58:02 +00:00
33 lines
1.2 KiB
Nix
33 lines
1.2 KiB
Nix
{ config, 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; [
|
|
anki # Rise, rinse, and repeat.
|
|
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.
|
|
kiwix # Offline reader for your fanon wiki.
|
|
monolith # Archive webpages into a single file.
|
|
newsboat # Reading news easily on the command line?
|
|
qbittorrent # The pirate's toolkit for downloading Linux ISOs.
|
|
sherlock # Make a profile of your *target*.
|
|
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;
|
|
|
|
xdg.mimeApps.defaultApplications = {
|
|
"application/vnd.anki" = [ "anki.desktop" ];
|
|
};
|
|
};
|
|
}
|