From 77d523683828e45f4c130b2da922bb3667965e39 Mon Sep 17 00:00:00 2001 From: Arthur Wambst Date: Sat, 22 Feb 2025 14:27:39 +0100 Subject: [PATCH] teststst --- modules/nvim/nvim.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/modules/nvim/nvim.nix b/modules/nvim/nvim.nix index feba572..dfa5c3a 100644 --- a/modules/nvim/nvim.nix +++ b/modules/nvim/nvim.nix @@ -1,5 +1,6 @@ { config, pkgs, lib, inputs, ... }: with lib; { +imports = [ ./theme.nix ]; options.nvim = { enable = lib.mkEnableOption "Enable Neovim"; }; @@ -7,6 +8,6 @@ with lib; { environment.systemPackages = [ pkgs.neovim ]; # Import the theme module automatically if it's available - imports = [ ./theme.nix ]; + }; }