summaryrefslogtreecommitdiff
path: root/pkgs/lib/home-manager/default.nix
blob: ad3878f59443fa7a24c67d2dd10108589fe1f80e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
{ }:

{
  serviceWithTimer = name:
    { Unit, Service, Timer, Install, ... }@config: {
      services.${name} = { inherit (config) Unit Install Service; };
      timers.${name} = {
        inherit (config) Unit Install;
        Timer = config.Timer // { Unit = "${name}.service"; };
      };
    };
}