os/modules/sway/xsettingsd.service.nix

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

19 lines
560 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 = "X Settings Daemon";
2023-01-28 20:49:10 +00:00
Documentation = ["https://github.com/derat/xsettingsd/wiki/Installation"];
BindsTo = ["sway-session.target"];
After = ["sway-session.target"];
2021-05-30 19:10:28 +00:00
# ConditionEnvironment requires systemd v247 to work correctly
2023-01-28 20:49:10 +00:00
ConditionEnvironment = ["WAYLAND_DISPLAY"];
2021-05-30 19:10:28 +00:00
};
Service = {
Type = "simple";
ExecStart = "${pkgs.xsettingsd}/bin/xsettingsd";
ExecStop = "/run/current-system/sw/bin/env pkill xsettingsd";
};
Install = {
2023-01-28 20:49:10 +00:00
WantedBy = ["sway-session.target"];
2021-05-30 19:10:28 +00:00
};
}