1
0
Fork 0
nix-system-configurations/home-manager/ssh-env.nix
2025-09-26 19:22:52 -05:00

16 lines
276 B
Nix

# SPDX-FileCopyrightText: 2025 Ethan Reece <contact@ethanreece.com>
#
# SPDX-License-Identifier: MIT
{ ... }:
{
home.sessionVariables = {
TERM = "xterm-256color";
};
programs = {
zellij = {
enable = true;
attachExistingSession = true;
};
};
}