14 lines
308 B
Nix
14 lines
308 B
Nix
{pkgs, ...}: {
|
|
systemd.user.services.mako = {
|
|
Unit = {
|
|
Description = "mako";
|
|
PartOf = ["graphical-session.target"];
|
|
};
|
|
Install = {
|
|
WantedBy = ["graphical-session.target"];
|
|
};
|
|
Service = {
|
|
ExecStart = "${pkgs.mako}/bin/mako --default-timeout 30000";
|
|
};
|
|
};
|
|
}
|