nix-config/modules/home/shell/nushell/default.nix
2024-05-16 02:40:39 -04:00

12 lines
160 B
Nix

{pkgs, ...}:
with pkgs; {
programs = {
carapace.enable = true;
nushell = {
enable = true;
configFile.source = ./config.nu;
};
};
}