programs/terminal/emulators/ghostty: goodbye ghosttyd 💔

This commit is contained in:
Anthony Rodriguez 2025-01-31 04:52:05 +01:00
parent c8f87c05dc
commit 6ea4799042
Signed by: nezia
SSH key fingerprint: SHA256:R/ue1eTzTHUoo77lJD/3fSUsyL4AwvcHImU5BAZai+8

View file

@ -96,20 +96,5 @@ in {
]; ];
packages = [pkgs.ghostty]; 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";
};
};
}; };
} }