Move folder and add Obsidian options

This commit is contained in:
Laurent Gueret
2026-01-30 19:47:01 +01:00
parent bc921319d9
commit 33cc5a5c18
6 changed files with 42 additions and 7 deletions
+24
View File
@@ -0,0 +1,24 @@
{
lib,
pkgs,
config,
...
}:
with lib;
let
cfg = config.os.editor.obsidian;
in
{
options.os.editor.obsidian = {
enable = mkEnableOption "Obsidian options";
};
config = mkIf cfg.enable {
home.packages = with pkgs; [
obsidian
];
};
}