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,18 @@
{ config, lib, ... }:
let
cfg = config.profiles.productivity;
in
{
imports = [
../../modules
];
config = lib.mkIf cfg.enable {
homeModules.desktop = {
productivity = {
obsidian.enable = true;
};
};
};
}