Jump to content

Obsidian: Difference between revisions

From NixOS Wiki
AveryKoen (talk | contribs)
mNo edit summary
m Add links to some terms
 
(3 intermediate revisions by 2 users not shown)
Line 1: Line 1:
[Obsidian](https://obsidian.md/) 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

Latest revision as of 02:23, 8 September 2025

Obsidian

Native Application

100%
Initial release10 March 2020
Latest release1.8.10; 22 April 2025
Operating SystemLinux, macOS, Windows, iOS, Android
External links
Websiteobsidian.md
GitHub[1]
DocumentationObsidian Help
🟆︎
Tip: This package is unfree, and will require extra steps to install. You can read more about allowing unfree software in the Nixpkgs Manual.

Obsidian is a proprietary closed-source note-taking app and text editor, that supports Markdown and LaTeX. It is the more popular equivalent to the open-source Logseq.

Installation

Obsidian can be installed from nixpkgs:

environment.systemPackages = with pkgs; [
  obsidian
];