Obsidian: Difference between revisions

From NixOS Wiki
N42 (talk | contribs)
created basic page
 
Klinger (talk | contribs)
 
Line 11: Line 11:
];
];
</syntaxhighlight>If you upgraded to 24.05, this line is no longer needed.
</syntaxhighlight>If you upgraded to 24.05, this line is no longer needed.
[[Category:Applications]]
[[Category:Note taking]]

Latest revision as of 16:23, 30 June 2024

Obsidian[1] is the private and flexible writing app that adapts to the way you think.

Installation

Obsidian can be installed from nixpkgs:

environment.systemPackages = with pkgs; [
  obsidian
];

On NixOs 23.11, you must add the following line in your configuration[2][3] :

nixpkgs.config.permittedInsecurePackages = [
  "electron-25.9.0"
];

If you upgraded to 24.05, this line is no longer needed.