10 lines
164 B
Nix
10 lines
164 B
Nix
|
{ config, lib, pkgs, user, theme, ... }:
|
||
|
{
|
||
|
programs.carapace = {
|
||
|
enable = true;
|
||
|
enableZshIntegration = true;
|
||
|
enableNushellIntegration = true;
|
||
|
};
|
||
|
}
|
||
|
|