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

25 lines
484 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";
2025-04-04 07:59:56 -04:00
ExecStart = "/run/current-system/sw/bin/bash /home/emenel/.local/bin/tww/tw-start.sh";
2025-04-03 11:18:12 -04:00
Restart = "always";
};
};
2025-04-04 07:59:56 -04:00
# home.file.".local/bin/tww" = {
# source = ./tww;
# recursive = true;
# };
2025-04-03 11:18:12 -04:00
}