nix-configs/modules/shell/nu.nix

35 lines
983 B
Nix
Raw Normal View History

{config, ...}: {
home-manager.users.jade = {pkgs, ...}: {
2023-12-08 07:38:39 +00:00
# Needed for nu_scripts background_task
services.pueue = {
enable = true;
settings = {
shared = {
use_unix_socket = true;
};
};
};
2023-12-08 10:49:22 +00:00
home.packages = [
pkgs.pueue
];
programs.nushell = {
enable = true;
package = config.users.defaultUserShell;
configFile.source = ../../other/config.nu;
envFile.source = ../../other/env.nu;
2024-06-29 12:37:41 +00:00
extraConfig = ''
2024-08-01 05:44:41 +00:00
plugin add ${pkgs.nushellPlugins.query}/bin/nu_plugin_query;
plugin add ${pkgs.nushellPlugins.polars}/bin/nu_plugin_polars;
plugin add ${pkgs.nushellPlugins.formats}/bin/nu_plugin_formats;
plugin use query;
plugin use polars;
plugin use formats;
2024-06-29 12:37:41 +00:00
'';
};
programs.starship.enableNushellIntegration = true;
programs.carapace.enableNushellIntegration = true;
programs.direnv.enableNushellIntegration = true;
};
}