Jump to content

Obsidian: Difference between revisions

From NixOS Wiki
N42 (talk | contribs)
created basic page
 
AveryKoen (talk | contribs)
m Expanded the description.
 
(4 intermediate revisions by 3 users not shown)
Line 1: Line 1:
Obsidian<ref>https://obsidian.md/</ref> is the private and flexible writing app that adapts to the way you think.
[https://obsidian.md/ Obsidian] is the private and flexible writing app that adapts to the way you think. It supports [https://www.markdownguide.org/ Markdown] for markup and [https://www.latex-project.org/ LaTeX] for the production of technical and scientific documentation.


== Installation ==
== Installation ==
Line 6: Line 6:
   obsidian
   obsidian
];
];
</syntaxhighlight>On NixOs 23.11, you must add the following line in your configuration<ref>https://github.com/NixOS/nixpkgs/issues/273611</ref><ref>https://forum.obsidian.md/t/electron-25-is-now-eol-please-upgrade-to-a-newer-version/72878/14</ref> :<syntaxhighlight lang="nix">
</syntaxhighlight>
nixpkgs.config.permittedInsecurePackages = [
 
  "electron-25.9.0"
[[Category:Applications]]
];
[[Category:Note taking]]
</syntaxhighlight>If you upgraded to 24.05, this line is no longer needed.

Latest revision as of 16:11, 15 January 2025

Obsidian is the private and flexible writing app that adapts to the way you think. It supports Markdown for markup and LaTeX for the production of technical and scientific documentation.

Installation

Obsidian can be installed from nixpkgs:

environment.systemPackages = with pkgs; [
  obsidian
];