programs/terminal/emulators: welcome back ghosttyd!

This commit is contained in:
Anthony Rodriguez 2025-01-31 19:19:53 +01:00
parent bc6404817e
commit 2f14eb0526
Signed by: nezia
SSH key fingerprint: SHA256:Ihfpl0rUpqDevYqnzSR34OYfVLbDNkBiUjs3CpX4ykA

View file

@ -96,5 +96,20 @@ in {
];
packages = [pkgs.ghostty];
};
systemd.user.services.ghosttyd = {
description = "ghosttyd";
partOf = ["graphical-session.target"];
after = ["graphical-session.target"];
wantedBy = ["graphical-session.target"];
path = lib.mkForce [];
serviceConfig = {
Type = "simple";
ExecStart = "${pkgs.ghostty}/bin/ghostty --initial-window=false --quit-after-last-window-closed=false";
Slice = "background-graphical.slice";
Restart = "on-failure";
};
};
};
}