Obsidian: Difference between revisions

Klinger (talk | contribs)
m Add links to some terms
 
(5 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.
{{Infobox application
| name = Obsidian
| type = Native
| image = 2023 Obsidian logo.svg
| website = [https://obsidian.md obsidian.md]
| documentation = [https://help.obsidian.md/ Obsidian Help]
| initialRelease = 10 March 2020
| latestRelease = 1.8.10; 22 April 2025
| os = Linux, macOS, Windows, iOS, Android
}}
 
{{Tip/unfree}}
 
[https://obsidian.md '''Obsidian'''] is a proprietary closed-source note-taking app and text editor, that supports [[Wikipedia:Markdown|Markdown]] and [[Wikipedia:LaTeX|LaTeX]]. It is the more popular equivalent to the open-source [[Logseq]].


== Installation ==
== Installation ==
Obsidian can be installed from nixpkgs:<syntaxhighlight lang="nixos">
 
Obsidian can be installed from nixpkgs:
 
<syntaxhighlight lang="nix">
environment.systemPackages = with pkgs; [
environment.systemPackages = with pkgs; [
   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"
];
</syntaxhighlight>If you upgraded to 24.05, this line is no longer needed.


[[Category:Applications]]
[[Category:Applications]]
[[Category:Note taking]]
[[Category:Note taking]]