From fe8ae759ef4b2d313efcf01015d53f047af28281 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Luis=20Qui=C3=B1ones?= Date: Wed, 5 Nov 2025 20:54:25 -0500 Subject: [PATCH] refactor(hm-module): remove unused var (#153) --- hm-module.nix | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/hm-module.nix b/hm-module.nix index 1396e3b..5d3080f 100644 --- a/hm-module.nix +++ b/hm-module.nix @@ -29,12 +29,6 @@ linuxConfigPath = ".zen"; darwinConfigPath = "Library/Application Support/Zen"; - configPath = "${( - if pkgs.stdenv.isDarwin - then darwinConfigPath - else linuxConfigPath - )}"; - # Actual profile directory path where places.sqlite is located profilePath = "${( if pkgs.stdenv.isDarwin @@ -612,7 +606,7 @@ in { ${optionalString (profile.spacesForce) deleteSpaces} ${optionalString (profile.pins != {}) insertPins} ${optionalString (profile.pinsForce) deletePins} - + # Force WAL checkpoint to ensure changes are visible immediately ${sqlite3} "${placesFile}" "PRAGMA wal_checkpoint(FULL);" || exit 1 }