11 lines
179 B
Nix
11 lines
179 B
Nix
{
|
|
pkgs,
|
|
customConfig,
|
|
...
|
|
}: {
|
|
home-manager.users.${customConfig.username} = {
|
|
programs.zellij.enable = true;
|
|
programs.zellij.enableFishIntegration = true;
|
|
};
|
|
}
|