8 lines
177 B
Nix
8 lines
177 B
Nix
|
{
|
||
|
flake.modules.homeManager.base.programs.zsh.profileExtra = ''
|
||
|
if [[ -z "$DISPLAY" ]] && [[ "$(tty)" == "/dev/tty1" ]]; then
|
||
|
exec startx &>/dev/null
|
||
|
fi
|
||
|
'';
|
||
|
}
|