nixos-config/config/programs/mako.nix

15 lines
308 B
Nix
Raw Normal View History

2022-06-12 15:39:15 +00:00
{pkgs, ...}: {
systemd.user.services.mako = {
Unit = {
Description = "mako";
2022-06-12 15:39:15 +00:00
PartOf = ["graphical-session.target"];
};
Install = {
2022-06-12 15:39:15 +00:00
WantedBy = ["graphical-session.target"];
};
Service = {
ExecStart = "${pkgs.mako}/bin/mako --default-timeout 30000";
};
};
}