From a250b1763dad915722540b5d0b8d2080156e41b0 Mon Sep 17 00:00:00 2001 From: Jakub Stachurski Date: Mon, 22 Jun 2026 01:17:01 +0200 Subject: fix: dyndns evaluation errors and formatting --- home-modules/apps/nvim/default.nix | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'home-modules/apps') diff --git a/home-modules/apps/nvim/default.nix b/home-modules/apps/nvim/default.nix index fb1eb94..c7e04f7 100644 --- a/home-modules/apps/nvim/default.nix +++ b/home-modules/apps/nvim/default.nix @@ -33,13 +33,13 @@ in initLua = lib.mkMerge [ '' - -- Load in the real config, if exists - local ok, fn = pcall (require, "entry") - if ok then - fn({ nix = true, }) - else - vim.notify("lua/entry.lua not found, no config to load", vim.log.levels.DEBUG) - end'' + -- Load in the real config, if exists + local ok, fn = pcall (require, "entry") + if ok then + fn({ nix = true, }) + else + vim.notify("lua/entry.lua not found, no config to load", vim.log.levels.DEBUG) + end'' ]; }; -- cgit v1.3.1