Add trilium

This commit is contained in:
Jakob Lechner 2025-04-08 00:06:34 +02:00
parent dcb50b0970
commit ea30ca33ea
6 changed files with 38 additions and 0 deletions

View file

@ -38,6 +38,7 @@
./thunderbird.nix
./tmux.nix
./tor-browser.nix
./trilium.nix
./vdirsyncer.nix
./vesc-tool.nix
];

View file

@ -0,0 +1,6 @@
{ nixosConfig, lib, pkgs, ... }:
lib.mkIf nixosConfig.jalr.gui.enable {
home.packages = with pkgs.master; [
trilium-next-desktop
];
}