Remove taskwarrior
This commit is contained in:
parent
23f74093d8
commit
cf9f705e78
|
@ -1,5 +1,5 @@
|
||||||
{pkgs, ...}: {
|
{ pkgs, ... }: {
|
||||||
home.packages = with pkgs; [dig silver-searcher gnumake];
|
home.packages = with pkgs; [ dig silver-searcher gnumake ];
|
||||||
programs = {
|
programs = {
|
||||||
direnv = {
|
direnv = {
|
||||||
enable = true;
|
enable = true;
|
||||||
|
@ -24,15 +24,11 @@
|
||||||
};
|
};
|
||||||
keychain = {
|
keychain = {
|
||||||
enable = true;
|
enable = true;
|
||||||
extraFlags = ["--quiet" "--noask" "--ignore-missing"];
|
extraFlags = [ "--quiet" "--noask" "--ignore-missing" ];
|
||||||
keys = ["id_rsa" "id_ed25519"];
|
keys = [ "id_rsa" "id_ed25519" ];
|
||||||
enableXsessionIntegration = true;
|
enableXsessionIntegration = true;
|
||||||
};
|
};
|
||||||
starship.enable = true;
|
starship.enable = true;
|
||||||
taskwarrior = {
|
|
||||||
enable = true;
|
|
||||||
# colorTheme = ./taskwarrior.theme;
|
|
||||||
};
|
|
||||||
};
|
};
|
||||||
xdg.configFile = {
|
xdg.configFile = {
|
||||||
"starship.toml".source = ./starship.toml;
|
"starship.toml".source = ./starship.toml;
|
||||||
|
|
|
@ -1,75 +0,0 @@
|
||||||
# Theme colors for catppuccin
|
|
||||||
|
|
||||||
# General decoration
|
|
||||||
color.label=magenta
|
|
||||||
color.label.sort=magenta
|
|
||||||
color.alternate=
|
|
||||||
color.header=cyan
|
|
||||||
color.footnote=yellow
|
|
||||||
color.warning=bold red
|
|
||||||
color.error=white on red
|
|
||||||
color.debug=blue
|
|
||||||
|
|
||||||
# Task state
|
|
||||||
color.completed=black
|
|
||||||
color.deleted=red
|
|
||||||
color.active=green
|
|
||||||
color.recurring=blue
|
|
||||||
color.scheduled=white on green
|
|
||||||
color.until=yellow
|
|
||||||
color.blocked=black on white
|
|
||||||
color.blocking=black on bright white
|
|
||||||
|
|
||||||
# Project
|
|
||||||
color.project.none=red
|
|
||||||
|
|
||||||
# Priority
|
|
||||||
color.uda.priority.H=bold white
|
|
||||||
color.uda.priority.M=white
|
|
||||||
color.uda.priority.L=
|
|
||||||
|
|
||||||
# Tags
|
|
||||||
color.tag.next=bold yellow
|
|
||||||
color.tag.none=
|
|
||||||
color.tagged=
|
|
||||||
|
|
||||||
# Due
|
|
||||||
color.due=red
|
|
||||||
color.due.today=red
|
|
||||||
color.overdue=bold red
|
|
||||||
|
|
||||||
# UDA
|
|
||||||
#color.uda.X=
|
|
||||||
|
|
||||||
# Report: burndown
|
|
||||||
color.burndown.done=on green
|
|
||||||
color.burndown.pending=on magenta
|
|
||||||
color.burndown.started=on blue
|
|
||||||
|
|
||||||
# Report: history
|
|
||||||
color.history.add=black on blue
|
|
||||||
color.history.delete=black on red
|
|
||||||
color.history.done=black on green
|
|
||||||
|
|
||||||
# Report: summary
|
|
||||||
color.summary.background=
|
|
||||||
color.summary.bar=black on green
|
|
||||||
|
|
||||||
# Command: calendar
|
|
||||||
color.calendar.due=red
|
|
||||||
color.calendar.due.today=underline bold red
|
|
||||||
color.calendar.holiday=black on bright yellow
|
|
||||||
color.calendar.overdue=bold white on bright red
|
|
||||||
color.calendar.scheduled=green
|
|
||||||
color.calendar.today=black on cyan
|
|
||||||
color.calendar.weekend=black
|
|
||||||
color.calendar.weeknumber=bold blue
|
|
||||||
|
|
||||||
# Command: sync
|
|
||||||
color.sync.added=green
|
|
||||||
color.sync.changed=yellow
|
|
||||||
color.sync.rejected=red
|
|
||||||
|
|
||||||
# Command: undo
|
|
||||||
color.undo.after=green
|
|
||||||
color.undo.before=red
|
|
|
@ -1,5 +1,5 @@
|
||||||
{config, ...}: {
|
{ config, ... }: {
|
||||||
imports = [./default.nix];
|
imports = [ ./default.nix ];
|
||||||
programs = {
|
programs = {
|
||||||
zsh = {
|
zsh = {
|
||||||
enable = true;
|
enable = true;
|
||||||
|
@ -19,7 +19,6 @@
|
||||||
"colored-man-pages"
|
"colored-man-pages"
|
||||||
"command-not-found"
|
"command-not-found"
|
||||||
"extract"
|
"extract"
|
||||||
"taskwarrior"
|
|
||||||
# Build tools
|
# Build tools
|
||||||
"git"
|
"git"
|
||||||
"gitignore"
|
"gitignore"
|
||||||
|
|
Loading…
Reference in a new issue