diff options
| author | Jakub Stachurski <jakub@wilkuu.xyz> | 2026-06-22 01:17:01 +0200 |
|---|---|---|
| committer | Jakub Stachurski <jakub@wilkuu.xyz> | 2026-06-22 01:17:01 +0200 |
| commit | a250b1763dad915722540b5d0b8d2080156e41b0 (patch) | |
| tree | a08392468aedc8f0c8c7f096dd9c4062fa0778a1 /home-modules/apps | |
| parent | 5094baa6b5857da5db554c432af0647a8aff16e3 (diff) | |
fix: dyndns evaluation errors and formatting
Diffstat (limited to 'home-modules/apps')
| -rw-r--r-- | home-modules/apps/nvim/default.nix | 14 |
1 files changed, 7 insertions, 7 deletions
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'' ]; }; |
