nixos-config/config/programs/mako.nix

18 lines
370 B
Nix
Raw Normal View History

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