Skip to content

Commit

Permalink
Arc clamp none
Browse files Browse the repository at this point in the history
  • Loading branch information
guillemcordoba committed Dec 5, 2024
1 parent 543b32e commit 81ab25e
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
1 change: 0 additions & 1 deletion flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@
"git+ssh://[email protected]/darksoil-studio/always-online-nodes?ref=main";

nixos-generators.url = "github:nix-community/nixos-generators";
# nixos-generators.inputs.nixpkgs.follows = "nixpkgs";

};

Expand Down
2 changes: 1 addition & 1 deletion src-tauri/gen/schemas/acl-manifests.json

Large diffs are not rendered by default.

5 changes: 4 additions & 1 deletion src-tauri/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,9 @@ pub fn happ_bundle() -> AppBundle {

#[cfg_attr(mobile, tauri::mobile_entry_point)]
pub fn run() {
let mut config = HolochainPluginConfig::new(holochain_dir(), wan_network_config());
config.gossip_arc_clamp = None;

tauri::Builder::default()
.plugin(
tauri_plugin_log::Builder::default()
Expand All @@ -23,7 +26,7 @@ pub fn run() {
)
.plugin(tauri_plugin_holochain::init(
vec_to_locked(vec![]).expect("Can't build passphrase"),
HolochainPluginConfig::new(holochain_dir(), wan_network_config()),
config,
))
.setup(|app| {
#[cfg(mobile)]
Expand Down

0 comments on commit 81ab25e

Please sign in to comment.