diff --git a/modules/programs/terminal/emulators/ghostty.nix b/modules/programs/terminal/emulators/ghostty.nix index fec09ba..ef73bcd 100644 --- a/modules/programs/terminal/emulators/ghostty.nix +++ b/modules/programs/terminal/emulators/ghostty.nix @@ -96,20 +96,5 @@ in { ]; packages = [pkgs.ghostty]; }; - - systemd.user.services.ghosttyd = { - description = "ghosttyd™"; - partOf = ["graphical-session.target"]; - after = ["graphical-session.target"]; - wantedBy = ["graphical-session.target"]; - path = with pkgs; [carapace starship zoxide]; - - serviceConfig = { - Type = "simple"; - ExecStart = "${pkgs.ghostty}/bin/ghostty --initial-window=false --quit-after-last-window-closed=false"; - Slice = "background-graphical.slice"; - Restart = "on-failure"; - }; - }; }; }