this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

:sparkles: using obsidian from pkgs instead of home manager module

+4 -12
+4 -12
home/obsidian/default.nix
··· 1 - { 2 - programs.obsidian = { 3 - enable = true; 4 - defaultSettings.appearance = { 5 - cssTheme = "Minimal"; 6 - monospaceFontFamily = "Monaspace Krypton"; 7 - }; 8 - defaultSettings.communityPlugins = [ 9 - "obsidian-livesync" 10 - "obsidian-minimal-settings" 11 - ]; 12 - }; 1 + {pkgs, ...}: { 2 + home.packages = with pkgs; [ 3 + obsidian 4 + ]; 13 5 }