nixos-config/modules/desktop/research.nix
2020-10-25 23:49:14 +08:00

19 lines
441 B
Nix
Executable File

# I'm not in academia but I like managing my library resources.
{ config, options, lib, pkgs, ... }:
with lib; {
options.modules.desktop.research = {
enable = mkOption {
type = types.bool;
default = false;
};
};
config = mkIf config.modules.desktop.research.enable {
my.packages = with pkgs; [
exiftool # A file metadata reader/writer/helicopter.
zotero # An academic's best friend.
];
};
}