From dcedcc0320b23f173b7527d414844a49137623e3 Mon Sep 17 00:00:00 2001 From: Erwin Boskma Date: Tue, 23 May 2023 10:28:13 +0200 Subject: [PATCH] nushell: Register plugins --- home-manager/modules/nushell/default.nix | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/home-manager/modules/nushell/default.nix b/home-manager/modules/nushell/default.nix index fb65b54..07732f3 100644 --- a/home-manager/modules/nushell/default.nix +++ b/home-manager/modules/nushell/default.nix @@ -30,13 +30,14 @@ in alias tree = ${pkgs.exa}/bin/exa -Fb --git --tree let-env LS_COLORS = (${pkgs.vivid}/bin/vivid generate dracula | str trim) + + register ${nushellPlugins.query}/bin/nu_plugin_query + register ${nushell_plugin_formats}/bin/nu_plugin_formats ''; }; home.packages = with pkgs; [ carapace - nushellPlugins.query - nushell_plugin_formats ]; }; }