diff --git a/profiles/sway/autostart.nix b/profiles/sway/autostart.nix index 494fc81..bf814f5 100644 --- a/profiles/sway/autostart.nix +++ b/profiles/sway/autostart.nix @@ -8,12 +8,9 @@ in }; config = lib.mkIf cfg.enable { - - # start sway if login happens - environment.interactiveShellInit = '' - if test `tty` = /dev/tty1; then - exec sway - fi - ''; + services.displayManager.lemurs = { + enable = true; + settings.environment_switcher.include_tty_shell = true; + }; }; }