os/modules/sway/sway-session.target.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

10 lines
262 B
Nix
Raw Normal View History

2023-01-28 21:49:10 +01:00
{pkgs, ...}: {
2021-05-30 21:10:28 +02:00
Unit = {
Description = "sway compositor session";
2023-01-28 21:49:10 +01:00
Documentation = ["man:systemd.special(7)"];
BindsTo = ["graphical-session.target"];
Wants = ["graphical-session-pre.target"];
After = ["graphical-session-pre.target"];
2021-05-30 21:10:28 +02:00
};
}