16 lines
276 B
Nix
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;
|
|
};
|
|
};
|
|
}
|