diff --git a/modules/nvim/nvim.nix b/modules/nvim/nvim.nix index 2ea2d66..6767fdd 100644 --- a/modules/nvim/nvim.nix +++ b/modules/nvim/nvim.nix @@ -7,6 +7,6 @@ with lib; { environment.systemPackages = [ pkgs.neovim ]; # Import the theme module automatically if it's available - imports = builtins.concatLists [ ./theme.nix ]; + imports = builtins.concatLists[ ./theme.nix ]; }; }