nixos-config/modules/home/taskwarrior-web.nix

24 lines
442 B
Nix
Raw Normal View History

2025-04-03 11:18:12 -04:00
{ pkgs, ... }:
{
systemd.user.services.taskwarrior-web = {
Unit = {
Description = "taskwarrior web";
After = [ "network.target" ];
};
Install = {
WantedBy = [ "multi-user.target" ];
};
Service = {
Type = "simple";
ExecStart = "/home/media/.local/bin/tww/taskwarrior-web";
Restart = "always";
};
};
home.file.".local/bin/tww" = {
source = ../../modules/home/tww;
};
}