mirror of
https://github.com/foo-dogsquared/nixos-config.git
synced 2025-01-31 22:57:55 +00:00
20 lines
453 B
Nix
20 lines
453 B
Nix
|
# 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.
|
||
|
];
|
||
|
};
|
||
|
}
|