From 5fa1494df6b7cd2682d0f88f081891a0d48aaa9f Mon Sep 17 00:00:00 2001 From: Arthur Wambst Date: Sat, 22 Feb 2025 14:11:19 +0100 Subject: [PATCH] tests --- modules/nvim/nvim.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 ]; }; }