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 ]; + }; }