0ed84d8068
Introduce a new home module for Obsidian with enable option and BoM vault. Expose Obsidian configuration in host‑specific home‑modules files. Add Stylix theming support for Obsidian (colors, fonts, polarity, vaults). Upgrade Helium AppImage to version 0.13.4.1 and update its hash.
20 lines
297 B
Nix
20 lines
297 B
Nix
{
|
|
pkgs,
|
|
lib,
|
|
config,
|
|
...
|
|
}: {
|
|
options.obsidian.enable = lib.mkEnableOption "Obsidian";
|
|
|
|
config.programs.obsidian = lib.mkIf config.obsidian.enable {
|
|
enable = true;
|
|
package = pkgs.obsidian;
|
|
cli.enable = true;
|
|
};
|
|
|
|
imports = [
|
|
# ./default-settings
|
|
./vaults
|
|
];
|
|
}
|