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
|
done
|
||||||
'';
|
'';
|
||||||
|
|
||||||
|
|
||||||
q-virtualization = ''
|
q-virtualization = ''
|
||||||
printf '%20s │ %s\n' "VT" \
|
printf '%20s │ %s\n' "VT" \
|
||||||
$(${pkgs.systemd}/bin/systemd-detect-virt)
|
$(${pkgs.systemd}/bin/systemd-detect-virt)
|
||||||
|
|
|
@ -36,39 +36,38 @@ in {
|
||||||
|
|
||||||
home-manager.users.mainUser = {
|
home-manager.users.mainUser = {
|
||||||
|
|
||||||
home.file.".config/bugwarrior/bugwarriorrc".text =
|
home.file.".config/bugwarrior/bugwarriorrc".text = ''
|
||||||
''
|
[general]
|
||||||
[general]
|
targets = my-github,nixos-github
|
||||||
targets = my-github,nixos-github
|
static_fields = priority
|
||||||
static_fields = priority
|
log.level = INFO
|
||||||
log.level = INFO
|
|
||||||
|
|
||||||
[my-github]
|
[my-github]
|
||||||
service = github
|
service = github
|
||||||
github.login = mrVanDalo
|
github.login = mrVanDalo
|
||||||
github.token = @oracle:eval:${pkgs.pass}/bin/pass development/github/mrVanDalo/bugwarriorAccessToken
|
github.token = @oracle:eval:${pkgs.pass}/bin/pass development/github/mrVanDalo/bugwarriorAccessToken
|
||||||
github.username = mrVanDalo
|
github.username = mrVanDalo
|
||||||
github.default_priority =
|
github.default_priority =
|
||||||
github.description_template = {{githubtitle}} {{githuburl}}
|
github.description_template = {{githubtitle}} {{githuburl}}
|
||||||
github.add_tags = github
|
github.add_tags = github
|
||||||
github.involved_issues = False
|
github.involved_issues = False
|
||||||
github.exclude_repos = azubi,stepp0r
|
github.exclude_repos = azubi,stepp0r
|
||||||
github.include_user_repos = True
|
github.include_user_repos = True
|
||||||
github.include_user_issues = False
|
github.include_user_issues = False
|
||||||
|
|
||||||
[nixos-github]
|
[nixos-github]
|
||||||
service = github
|
service = github
|
||||||
github.login = mrVanDalo
|
github.login = mrVanDalo
|
||||||
github.token = @oracle:eval:${pkgs.pass}/bin/pass development/github/mrVanDalo/bugwarriorAccessToken
|
github.token = @oracle:eval:${pkgs.pass}/bin/pass development/github/mrVanDalo/bugwarriorAccessToken
|
||||||
github.username = mrVanDalo
|
github.username = mrVanDalo
|
||||||
github.default_priority =
|
github.default_priority =
|
||||||
github.description_template = {{githubtitle}} {{githuburl}}
|
github.description_template = {{githubtitle}} {{githuburl}}
|
||||||
github.add_tags = github
|
github.add_tags = github
|
||||||
github.involved_issues = False
|
github.involved_issues = False
|
||||||
github.include_user_repos = False
|
github.include_user_repos = False
|
||||||
github.include_user_issues = False
|
github.include_user_issues = False
|
||||||
github.query = involves:mrVanDalo is:open org:NixOS org:krebs
|
github.query = involves:mrVanDalo is:open org:NixOS org:krebs
|
||||||
'';
|
'';
|
||||||
|
|
||||||
home.file.".zshrc".text = ''
|
home.file.".zshrc".text = ''
|
||||||
# a fix for https://github.com/NixOS/nixpkgs/issues/27587
|
# a fix for https://github.com/NixOS/nixpkgs/issues/27587
|
||||||
|
|
Loading…
Reference in a new issue