stockholm/makefu/2configs/home-manager/taskwarrior.nix

32 lines
762 B
Nix
Raw Normal View History

2019-03-13 09:52:08 +00:00
{pkgs, ... }:
let
loc = "/home/makefu/.task";
in {
state = [ "${loc}/keys" ];
2019-04-17 19:44:00 +00:00
environment.shellAliases = {
tshack = "task tags:shack";
tkrebs = "task tags:krebs";
thome = "task tags:home";
t = "task project: ";
};
2019-03-13 09:52:08 +00:00
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";
};
};
};
}