nixos-config/modules/home/all/nushell/default.nix
2025-08-24 14:06:33 -04:00

12 lines
240 B
Nix

{ config, ... }:
{
programs.nushell = {
enable = true;
envFile.source = ./env.nu;
configFile.source = ./config.nu;
shellAliases = config.home.shellAliases;
environmentVariables = {
EDITOR = "nvim";
};
};
}