blob: 57ba1a08d9f5c5e9e1ed4ea0c3bde5decd8cac58 (
plain)
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
|
{pkgs, ... }:
let
loc = "/home/makefu/.task";
in {
state = [ "${loc}/keys" ];
environment.shellAliases = {
tshack = "task tags:shack";
tkrebs = "task tags:krebs";
thome = "task tags:home";
t = "task project: ";
};
home-manager.users.makefu.programs.taskwarrior = {
enable = true;
dataLocation = loc;
config = {
default.command = "list";
taskd = {
server = "gum:53589";
certificate = "${loc}/keys/public.crt";
key = "${loc}/keys/private.key";
ca = "${loc}/keys/ca.crt";
credentials = "home/makefu/0e6c8146-1ddb-4906-9369-8f77e34cdf84";
};
context = {
work = "tags:work";
shack = "tags:shack";
home = "tags:home";
};
};
};
}
|