17 lines
448 B
Nix
17 lines
448 B
Nix
{ pkgs, ... }:
|
|
|
|
{
|
|
# Install Obsidian
|
|
home.packages = with pkgs; [
|
|
obsidian
|
|
];
|
|
|
|
# Optional: You might want to configure Obsidian's data directory.
|
|
# By default, Obsidian stores its data in ~/Obsidian.
|
|
# You can change this using environment variables, but it's less common to manage this declaratively.
|
|
# Example (you might not need this):
|
|
# environment.variables = {
|
|
# OBSIDIAN_VAULT_PATH = "/path/to/your/vaults";
|
|
# };
|
|
}
|