nixos-config/modules/desktop/research.nix

23 lines
462 B
Nix
Raw Normal View History

2020-08-30 21:58:22 +00:00
# I'm not in academia but I like managing my library resources.
{ config, options, lib, pkgs, ... }:
2020-11-05 06:39:02 +00:00
with lib;
let
cfg = config.modules.desktop.research;
in {
2020-08-30 21:58:22 +00:00
options.modules.desktop.research = {
enable = mkOption {
type = types.bool;
default = false;
};
};
2020-11-05 06:39:02 +00:00
config = mkIf cfg.enable {
2020-08-30 21:58:22 +00:00
my.packages = with pkgs; [
2020-10-25 15:49:14 +00:00
exiftool # A file metadata reader/writer/helicopter.
zotero # An academic's best friend.
2020-08-30 21:58:22 +00:00
];
};
}