summaryrefslogtreecommitdiff
path: root/nixos/home-configuration/apps/nushell.nix
blob: 2d5d83afd409239e8908b7132d00be5d717f2ecb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
{
	pkgs,
	config,
	...
}:
{
	programs = {
		carapace = {
			enable = true;
			enableNushellIntegration = true;
		};
	};
}