From 959495c77e1f260e4fa113dd9ba06ae6a3e0b2d0 Mon Sep 17 00:00:00 2001 From: Soliprem <73885403+Soliprem@users.noreply.github.com> Date: Thu, 28 Nov 2024 17:24:06 +0100 Subject: [PATCH] modules/plugins/languages/nu.nix: applying suggested change for option ordering Co-authored-by: raf --- modules/plugins/languages/nu.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/plugins/languages/nu.nix b/modules/plugins/languages/nu.nix index 15f66882..de0ca93d 100644 --- a/modules/plugins/languages/nu.nix +++ b/modules/plugins/languages/nu.nix @@ -71,10 +71,10 @@ in { }; package = mkOption { - description = "Nu LSP server package, or the command to run as a list of strings"; - example = ''[(lib.getExe pkgs.nushell) "--lsp"]''; type = either package (listOf str); default = servers.${cfg.lsp.server}.package; + example = ''[(lib.getExe pkgs.nushell) "--lsp"]''; + description = "Nu LSP server package, or the command to run as a list of strings"; }; };