feat(obsidian): initial obsidian config

This commit is contained in:
ooks-io 2024-02-27 20:02:29 +13:00
parent 8fcda1a7e9
commit a02ecc1f70
6 changed files with 48 additions and 2 deletions

View file

@ -0,0 +1,11 @@
{ lib, config, pkgs, ... }:
let
cfg = config.homeModules.desktop.productivity.obsidian;
in
{
config = lib.mkIf cfg.enable {
home.packages = with pkgs; [ obsidian ];
};
}