Last fix on darwin new structure

This commit is contained in:
Laurent Gueret
2026-02-11 16:00:40 +01:00
parent e3e63a800b
commit 7aaedb5ffa
30 changed files with 97 additions and 96 deletions
+17
View File
@@ -0,0 +1,17 @@
{ lib, config, ... }:
with lib;
let
cfg = config.os.homebrew.obsidian;
in
{
options.os.homebrew.obsidian = {
enable = mkEnableOption "System obsidian homebrew service";
};
config = mkIf cfg.enable {
homebrew.casks = [
"obsidian"
];
};
}