os/modules/graphical/sway/sway.service.nix

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

19 lines
537 B
Nix
Raw Normal View History

2023-01-28 20:49:10 +00:00
{ pkgs, ... }:
{
2021-05-30 19:10:28 +00:00
Unit = {
Description = "sway - SirCmpwn's Wayland window manager";
2023-01-28 20:49:10 +00:00
Documentation = [ "man:sway(5)" ];
BindsTo = [ "graphical-session.target" ];
Wants = [ "graphical-session-pre.target" ];
After = [ "graphical-session-pre.target" ];
2021-05-30 19:10:28 +00:00
};
Service = {
Type = "simple";
ExecStartPre = "${pkgs.systemd}/bin/systemctl --user unset-environment WAYLAND_DISPLAY DISPLAY";
2021-05-30 19:10:28 +00:00
ExecStart = "${pkgs.sway}/bin/sway";
Restart = "on-failure";
RestartSec = "1";
TimeoutStopSec = "10";
};
}