diff options
| author | Collin Williams <96917990+bluedragon1221@users.noreply.github.com> | 2025-09-14 13:52:55 -0500 |
|---|---|---|
| committer | Collin Williams <96917990+bluedragon1221@users.noreply.github.com> | 2025-09-14 13:54:53 -0500 |
| commit | 64d6e9664bbcbe4125df56f8f228f92222c13188 (patch) | |
| tree | 56c14664bdd8047bb8a71a981ca4a315ec19a9b6 /modules/desktop/hjem/programs | |
| parent | 6fabcf9a21bddc9a69f63a32535cfc25fcf668e2 (diff) | |
cfg for research applications for mercury
Diffstat (limited to 'modules/desktop/hjem/programs')
| -rw-r--r-- | modules/desktop/hjem/programs/research.nix | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/modules/desktop/hjem/programs/research.nix b/modules/desktop/hjem/programs/research.nix new file mode 100644 index 0000000..3bfde76 --- /dev/null +++ b/modules/desktop/hjem/programs/research.nix @@ -0,0 +1,26 @@ +{ + config, + pkgs, + lib, + ... +}: let + cfg = config.collinux.desktop.programs.research; +in + lib.mkIf cfg.enable { + packages = with pkgs; [ + zotero + zathura + xournalpp + ]; + files = { + ".config/xournalpp/toolbar.ini" = { + generator = lib.generators.toINI {}; + value = { + "Default" = { + toolbarTop1 = "ERASER,PEN,HIGHLIGHTER,SELECT_PDF_TEXT_LINEAR,SEPARATOR,TEXT,MATH_TEX,IMAGE,SPACER,FINE,MEDIUM,THICK,VERY_THICK,SEPARATOR,SELECT_FONT,COLOR(6),COLOR(8),COLOR(9),COLOR(3),COLOR(2),COLOR(4),COLOR(7),COLOR(5),COLOR(0),SEPARATOR"; + name = "Default"; + }; + }; + }; + }; + } |
