🚧 use nextcloud deck with bugwarrior
All checks were successful
Build all NixOS Configurations / nix build (push) Successful in 13m24s

This commit is contained in:
Ingolf Wagner 2024-09-11 10:35:22 +07:00
parent 84a6dd2c8f
commit 1d044521e8
Signed by: palo
GPG key ID: 76BF5F1928B9618B

View file

@ -58,12 +58,14 @@
#components.monitor.opentelemetry.exporter.debug = "logs"; #components.monitor.opentelemetry.exporter.debug = "logs";
home-manager.users.mainUser.home.sessionPath = [ "$HOME/.timewarrior/scripts" ]; home-manager.users.mainUser.home.sessionPath = [ "$HOME/.timewarrior/scripts" ];
# todo: move to homemanager
home-manager.users.mainUser.bugwarrior.config = { home-manager.users.mainUser.bugwarrior.config = {
general = { general = {
targets = [ targets = [
"terranix" "terranix"
"my_github" "my_github"
"logseq" "logseq"
"nextcloud-deck"
]; ];
log_level = "INFO"; log_level = "INFO";
static_fields = [ "priority" ]; static_fields = [ "priority" ];
@ -72,6 +74,12 @@
data.location=$HOME/.bugwarrior data.location=$HOME/.bugwarrior
''; '';
}; };
nextcloud-deck = {
service = "deck";
base_uri = "https://nextcloud.ingolf-wagner.de";
username = "palo";
password = "@oracle:eval:${pkgs.pass}/bin/pass show bugwarrior/nextcloud-deck/palo";
};
logseq = { logseq = {
service = "logseq"; service = "logseq";
add_tags = "bugwarrior,logseq"; add_tags = "bugwarrior,logseq";
@ -80,7 +88,7 @@
terranix = { terranix = {
service = "github"; service = "github";
login = "mrVanDalo"; login = "mrVanDalo";
token = "@oracle:eval:${pkgs.pass}/bin/pass development/github/mrVanDalo/bugwarriorAccessToken"; token = "@oracle:eval:${pkgs.pass}/bin/pass show development/github/mrVanDalo/bugwarriorAccessToken";
username = "mrVanDalo"; username = "mrVanDalo";
default_priority = ""; default_priority = "";
description_template = "{{githubtitle}} {{githuburl}}"; description_template = "{{githubtitle}} {{githuburl}}";