mirror of
https://github.com/foo-dogsquared/nixos-config.git
synced 2025-01-31 16:57:55 +00:00
efc578e961
- Add `modules.desktop.cleanup` for the usual cleanup activties in NixOS. - Update to proper descriptions for module options added with `lib.mkEnableOption`. - Additional packages for various modules. - Deleted `modules/home-manager/alacritty`. It is pretty useless though. :(
20 lines
747 B
Nix
20 lines
747 B
Nix
{ config, options, lib, pkgs, ... }:
|
|
|
|
let cfg = config.modules.research;
|
|
in {
|
|
options.modules.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.
|
|
internetarchive # All of the potential vintage collection of questionable materials at your fingertips.
|
|
newsboat # Reading news easily on the command line?
|
|
qbittorrent # The pirate's toolkit for downloading Linux ISOs.
|
|
zotero # It's actually good at archiving despite not being a researcher myself.
|
|
];
|
|
};
|
|
}
|