summaryrefslogtreecommitdiff
path: root/home-modules
diff options
context:
space:
mode:
authorJakub Stachurski <jakub@wilkuu.xyz>2026-06-22 01:17:01 +0200
committerJakub Stachurski <jakub@wilkuu.xyz>2026-06-22 01:17:01 +0200
commita250b1763dad915722540b5d0b8d2080156e41b0 (patch)
treea08392468aedc8f0c8c7f096dd9c4062fa0778a1 /home-modules
parent5094baa6b5857da5db554c432af0647a8aff16e3 (diff)
fix: dyndns evaluation errors and formatting
Diffstat (limited to 'home-modules')
-rw-r--r--home-modules/apps/nvim/default.nix14
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''
];
};