diff --git a/configurations/home/srid@zest.nix b/configurations/home/srid@zest.nix index 41f6251..755726c 100644 --- a/configurations/home/srid@zest.nix +++ b/configurations/home/srid@zest.nix @@ -12,7 +12,6 @@ in "${homeMod}/claude-code" "${homeMod}/work/juspay.nix" - "${homeMod}/services/obsidian.nix" # Remote builders # "${homeMod}/nix/buildMachines" diff --git a/configurations/nixos/pureintent/default.nix b/configurations/nixos/pureintent/default.nix index 0c6c66f..5575e1e 100644 --- a/configurations/nixos/pureintent/default.nix +++ b/configurations/nixos/pureintent/default.nix @@ -16,9 +16,11 @@ in users.users.${flake.config.me.username}.linger = true; home-manager.sharedModules = [ - "${homeMod}/services/vira.nix" "${homeMod}/work/juspay.nix" - # (self + /modules/home/services/dropbox.nix) + "${homeMod}/services/vira.nix" + + "${homeMod}/services/dropbox.nix" + "${homeMod}/services/obsidian.nix" # Remote builders "${homeMod}/nix/buildMachines" diff --git a/modules/home/services/obsidian.nix b/modules/home/services/obsidian.nix index fd12f84..5a69931 100644 --- a/modules/home/services/obsidian.nix +++ b/modules/home/services/obsidian.nix @@ -11,7 +11,7 @@ in ]; services.emanote = { - enable = true; + enable = false; notes = [ myVault ]; port = 7001; package = inputs.emanote.packages.${pkgs.system}.default; @@ -22,5 +22,6 @@ in package = inputs.imako.packages.${pkgs.system}.default; vaultDir = myVault; port = 7002; + host = "0.0.0.0"; }; }