Obsidian: Difference between revisions

From NixOS Wiki
Klinger (talk | contribs)
drop 23.11
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"
];
</syntaxhighlight>If you upgraded to 24.05, this line is no longer needed.


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

Revision as of 08:08, 3 December 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
];