nixos-config/config/programs/mako.nix

18 lines
374 B
Nix
Raw Normal View History

2022-06-12 15:39:15 +00:00
{pkgs, ...}: {
2023-01-01 11:44:43 +00:00
programs.mako = {
enable = true;
defaultTimeout = 30000;
};
systemd.user.services.mako = {
Unit = {
Description = "mako";
2023-01-01 11:44:43 +00:00
After = [ "graphical-session-pre.target" ];
PartOf = [ "graphical-session.target" ];
};
2023-01-01 11:44:43 +00:00
Install.WantedBy = ["graphical-session.target"];
Service = {
2023-01-01 11:44:43 +00:00
ExecStart = "mako";
};
};
}