taskwarrior: add checklist behavior
This commit is contained in:
parent
fcb110da02
commit
0e06701720
2 changed files with 30 additions and 32 deletions
|
@ -270,7 +270,6 @@ let
|
|||
done
|
||||
'';
|
||||
|
||||
|
||||
q-virtualization = ''
|
||||
printf '%20s │ %s\n' "VT" \
|
||||
$(${pkgs.systemd}/bin/systemd-detect-virt)
|
||||
|
|
|
@ -36,39 +36,38 @@ in {
|
|||
|
||||
home-manager.users.mainUser = {
|
||||
|
||||
home.file.".config/bugwarrior/bugwarriorrc".text =
|
||||
''
|
||||
[general]
|
||||
targets = my-github,nixos-github
|
||||
static_fields = priority
|
||||
log.level = INFO
|
||||
home.file.".config/bugwarrior/bugwarriorrc".text = ''
|
||||
[general]
|
||||
targets = my-github,nixos-github
|
||||
static_fields = priority
|
||||
log.level = INFO
|
||||
|
||||
[my-github]
|
||||
service = github
|
||||
github.login = mrVanDalo
|
||||
github.token = @oracle:eval:${pkgs.pass}/bin/pass development/github/mrVanDalo/bugwarriorAccessToken
|
||||
github.username = mrVanDalo
|
||||
github.default_priority =
|
||||
github.description_template = {{githubtitle}} {{githuburl}}
|
||||
github.add_tags = github
|
||||
github.involved_issues = False
|
||||
github.exclude_repos = azubi,stepp0r
|
||||
github.include_user_repos = True
|
||||
github.include_user_issues = False
|
||||
[my-github]
|
||||
service = github
|
||||
github.login = mrVanDalo
|
||||
github.token = @oracle:eval:${pkgs.pass}/bin/pass development/github/mrVanDalo/bugwarriorAccessToken
|
||||
github.username = mrVanDalo
|
||||
github.default_priority =
|
||||
github.description_template = {{githubtitle}} {{githuburl}}
|
||||
github.add_tags = github
|
||||
github.involved_issues = False
|
||||
github.exclude_repos = azubi,stepp0r
|
||||
github.include_user_repos = True
|
||||
github.include_user_issues = False
|
||||
|
||||
[nixos-github]
|
||||
service = github
|
||||
github.login = mrVanDalo
|
||||
github.token = @oracle:eval:${pkgs.pass}/bin/pass development/github/mrVanDalo/bugwarriorAccessToken
|
||||
github.username = mrVanDalo
|
||||
github.default_priority =
|
||||
github.description_template = {{githubtitle}} {{githuburl}}
|
||||
github.add_tags = github
|
||||
github.involved_issues = False
|
||||
github.include_user_repos = False
|
||||
github.include_user_issues = False
|
||||
github.query = involves:mrVanDalo is:open org:NixOS org:krebs
|
||||
'';
|
||||
[nixos-github]
|
||||
service = github
|
||||
github.login = mrVanDalo
|
||||
github.token = @oracle:eval:${pkgs.pass}/bin/pass development/github/mrVanDalo/bugwarriorAccessToken
|
||||
github.username = mrVanDalo
|
||||
github.default_priority =
|
||||
github.description_template = {{githubtitle}} {{githuburl}}
|
||||
github.add_tags = github
|
||||
github.involved_issues = False
|
||||
github.include_user_repos = False
|
||||
github.include_user_issues = False
|
||||
github.query = involves:mrVanDalo is:open org:NixOS org:krebs
|
||||
'';
|
||||
|
||||
home.file.".zshrc".text = ''
|
||||
# a fix for https://github.com/NixOS/nixpkgs/issues/27587
|
||||
|
|
Loading…
Reference in a new issue