about summary refs log tree commit diff stats
path: root/hm/soispha/conf/taskwarrior/default.nix
blob: f2ca65a96dd18913befe9baf1cd26062e002feeb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
  nixosConfig,
  lib,
  ...
}: {
  imports = [
    ./hooks
  ];

  services.taskwarrior-sync = {
    enable = true;
  };

  programs.taskwarrior = let
    projects = import ./projects {};

    mkContext = project:
      if builtins.hasAttr "subprojects" project
      then
        lib.lists.flatten (
          (builtins.map mkContext (builtins.map (mkProject project) project.subprojects))
          ++ (mkContext (builtins.removeAttrs project ["subprojects"]))
        )
      else [
        {
          inherit (project) name;
          value = {
            read = "project:${project.name}";
            write = "project:${project.name}";
            rc = {
              neorg_path =
                if builtins.hasAttr "neorg_path" project
                then project.neorg_path
                else "${project.prefix}/${project.name}/index.norg";
            };
          };
        }
      ];
    mkProject = project: subproject:
      if builtins.isString subproject
      then {
        name = "${project.name}_${subproject}";
        neorg_path =
          if builtins.hasAttr "neorg_path_prefix" project
          then "${project.neorg_path_prefix}/${subproject}/index.norg"
          else "${project.prefix}/${project.name}/${subproject}/index.norg";
      }
      else let
        name = builtins.elemAt (builtins.attrNames subproject) 0;
      in {
        name = "${project.name}_${name}";
        neorg_path_prefix = "${project.prefix}/${project.name}/${name}";
        subprojects = builtins.elemAt (builtins.attrValues subproject) 0;
      };

    context =
      builtins.listToAttrs (lib.lists.flatten (builtins.map mkContext projects));
  in {
    enable = true;
    colorTheme = ./nord.theme;
    config = {
      news.version = "2.6.0";
      complete.all.tags = true;
      list.all = {
        projects = true;
        tags = true;
      };
      regex = true;
      weekstart = "Monday";
      uda = {
        total_active_time = {
          type = "duration";
          label = "Total active time";
        };
      };
      alias = {
        mod = "modify";
        n = "execute neorg --task";
      };
      color = true;

      inherit context;

      taskd = {
        server = "taskserver.vhack.eu:53589";
        trust = "strict";
        ca =
          nixosConfig.age.secrets.taskserverCA.path;
        key =
          nixosConfig.age.secrets.taskserverPrivate.path;
        certificate =
          nixosConfig.age.secrets.taskserverPublic.path;
        credentials = import ./taskd/user_id.nix {};
      };
    };
  };
}