nix-config/modules/home/shell/nushell/default.nix

12 lines
160 B
Nix
Raw Normal View History

2024-05-16 02:40:39 -04:00
{pkgs, ...}:
with pkgs; {
programs = {
carapace.enable = true;
nushell = {
enable = true;
configFile.source = ./config.nu;
};
};
}