From 8eeaac77eb9586f5fb64f12219ffa879907ebd94 Mon Sep 17 00:00:00 2001
From: Crony Akatsuki <crony@cronyakatsuki.xyz>
Date: Sun, 23 Mar 2025 21:29:21 +0100
Subject: [PATCH] feat(server): use my custom nvf config.

---
 hosts/server/home.nix | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/hosts/server/home.nix b/hosts/server/home.nix
index 362e8ed..d953f12 100644
--- a/hosts/server/home.nix
+++ b/hosts/server/home.nix
@@ -11,10 +11,12 @@
 
   imports = [
     ../../modules/cross-platform/home-manager/zsh.nix
+    ../../modules/cross-platform/home-manager/neovim.nix
     inputs.nvf.homeManagerModules.default
   ];
 
   crony.zsh.enable = true;
+  crony.neovim.enable = true;
 
   programs.starship.enable = true;
 }