1
0
Fork 0

Track taskwarrior-git

This commit is contained in:
Malte Brandy 2020-09-16 23:35:26 +02:00
parent fbae32fac1
commit caf12828a3
No known key found for this signature in database
GPG key ID: 226A2D41EF5378C9
3 changed files with 21 additions and 5 deletions

View file

@ -1,4 +1,5 @@
{ lib, pkgs, config, ... }: {
home.packages = [ pkgs.taskwarrior-git ];
services.taskwarrior-sync = {
enable = true;
frequency = "*:0/1";

View file

@ -11,6 +11,12 @@
"url": "https://github.com/rycee/home-manager/archive/472ca211cac604efdf621337067a237be9df389e.tar.gz",
"url_template": "https://github.com/<owner>/<repo>/archive/<rev>.tar.gz"
},
"kassandra": {
"ref": "master",
"repo": "https://git.darmstadt.ccc.de/maralorn/kassandra",
"rev": "8abb3558ac2253733cdc53d973ce283846f38984",
"type": "git"
},
"nix-direnv": {
"branch": "master",
"description": "A fast, persistent use_nix implementation for direnv [maintainer=@Mic92] ",
@ -95,11 +101,17 @@
"url": "https://github.com/obsidiansystems/obelisk/archive/4f2d3f1c1312d833ae814b7a86cf7b65ea0614ec.tar.gz",
"url_template": "https://github.com/<owner>/<repo>/archive/<rev>.tar.gz"
},
"kassandra": {
"ref": "master",
"repo": "https://git.darmstadt.ccc.de/maralorn/kassandra",
"rev": "8abb3558ac2253733cdc53d973ce283846f38984",
"type": "git"
"taskwarrior-git-backend": {
"branch": "master",
"description": "An experimental task-sync alternative via git written in Haskell",
"homepage": null,
"owner": "maralorn",
"repo": "taskwarrior-git-backend",
"rev": "e29c4335e2cb10d6c73832dcbdf931fdc6872e94",
"sha256": "0pq2s75mj9dpk5lk7igx88641zs0bihp6yx8l5gipaqy2daydrz6",
"type": "tarball",
"url": "https://github.com/maralorn/taskwarrior-git-backend/archive/e29c4335e2cb10d6c73832dcbdf931fdc6872e94.tar.gz",
"url_template": "https://github.com/<owner>/<repo>/archive/<rev>.tar.gz"
},
"unstable": {
"branch": "nixos-unstable",

View file

@ -0,0 +1,3 @@
self: super: {
taskwarrior-git = self.haskellPackages.callCabal2nix "taskwarrior-git" self.sources.taskwarrior-git-backend {};
}