1
0
Fork 0
mirror of https://github.com/nix-community/home-manager.git synced 2025-11-08 19:46:05 +01:00

treewide: implement auto importing for modules

Reduce maintenance burden and increase efficiency by automatically
importing modules following a specific convention.

Co-authored-by: awwpotato <awwpotato@voidq.com>
Signed-off-by: Austin Horstman <khaneliman12@gmail.com>
This commit is contained in:
Austin Horstman 2025-06-20 14:39:55 -05:00
parent fefeb0e928
commit 4fca600cb1
461 changed files with 72 additions and 474 deletions

View file

@ -1,66 +0,0 @@
{
config,
lib,
pkgs,
...
}:
let
cfg = config.services.taskwarrior-sync;
in
{
meta.maintainers = with lib.maintainers; [
euxane
minijackson
];
options.services.taskwarrior-sync = {
enable = lib.mkEnableOption "Taskwarrior periodic sync";
package = lib.mkPackageOption pkgs "taskwarrior" { example = "pkgs.taskwarrior3"; };
frequency = lib.mkOption {
type = lib.types.str;
default = "*:0/5";
description = ''
How often to run `taskwarrior sync`. This
value is passed to the systemd timer configuration as the
`OnCalendar` option. See
{manpage}`systemd.time(7)`
for more information about the format.
'';
};
};
config = lib.mkIf cfg.enable {
assertions = [
(lib.hm.assertions.assertPlatform "services.taskwarrior-sync" pkgs lib.platforms.linux)
];
systemd.user.services.taskwarrior-sync = {
Unit = {
Description = "Taskwarrior sync";
};
Service = {
CPUSchedulingPolicy = "idle";
IOSchedulingClass = "idle";
ExecStart = "${cfg.package}/bin/task synchronize";
};
};
systemd.user.timers.taskwarrior-sync = {
Unit = {
Description = "Taskwarrior periodic sync";
};
Timer = {
Unit = "taskwarrior-sync.service";
OnCalendar = cfg.frequency;
};
Install = {
WantedBy = [ "timers.target" ];
};
};
};
}