nixfiles/home/gui/environments/sway/zsh-autostart.nix

19 lines
423 B
Nix
Raw Normal View History

2022-02-10 10:37:09 +00:00
_: {
2022-01-16 11:22:44 +00:00
programs.zsh.profileExtra = ''
# If running from tty1 start sway
if [ "$(tty)" = "/dev/tty1" ]; then
systemctl --user unset-environment \
SWAYSOCK \
2022-02-13 13:57:39 +00:00
I3SOCK \q
2022-01-16 11:22:44 +00:00
WAYLAND_DISPLAY \
DISPLAY \
IN_NIX_SHELL \
__HM_SESS_VARS_SOURCED \
GPG_TTY \
NIX_PATH \
SHLVL
exec env --unset=SHLVL systemd-cat -t sway -- sway
fi
'';
}