mirror of
https://gitlab.com/upRootNutrition/dotfiles.git
synced 2025-06-16 10:05:13 -05:00
feat: added academic packages
This commit is contained in:
parent
f72f772cce
commit
7e98c1daa2
4 changed files with 44 additions and 0 deletions
11
modules/home/gui/apps/academic/default.nix
Executable file
11
modules/home/gui/apps/academic/default.nix
Executable file
|
@ -0,0 +1,11 @@
|
|||
let
|
||||
importList =
|
||||
let
|
||||
content = builtins.readDir ./.;
|
||||
dirContent = builtins.filter (n: content.${n} == "directory") (builtins.attrNames content);
|
||||
in
|
||||
map (name: ./. + "/${name}") dirContent;
|
||||
in
|
||||
{
|
||||
imports = importList;
|
||||
}
|
11
modules/home/gui/apps/academic/jabref/default.nix
Normal file
11
modules/home/gui/apps/academic/jabref/default.nix
Normal file
|
@ -0,0 +1,11 @@
|
|||
{
|
||||
pkgs,
|
||||
...
|
||||
}:
|
||||
{
|
||||
home.packages = builtins.attrValues {
|
||||
inherit (pkgs)
|
||||
jabref
|
||||
;
|
||||
};
|
||||
}
|
11
modules/home/gui/apps/academic/paperlib/default.nix
Normal file
11
modules/home/gui/apps/academic/paperlib/default.nix
Normal file
|
@ -0,0 +1,11 @@
|
|||
{
|
||||
pkgs,
|
||||
...
|
||||
}:
|
||||
{
|
||||
home.packages = builtins.attrValues {
|
||||
inherit (pkgs)
|
||||
paperlib
|
||||
;
|
||||
};
|
||||
}
|
11
modules/home/gui/apps/academic/zotero/default.nix
Normal file
11
modules/home/gui/apps/academic/zotero/default.nix
Normal file
|
@ -0,0 +1,11 @@
|
|||
{
|
||||
pkgs,
|
||||
...
|
||||
}:
|
||||
{
|
||||
home.packages = builtins.attrValues {
|
||||
inherit (pkgs)
|
||||
zotero-beta
|
||||
;
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue