diff options
author | Soispha <soispha@vhack.eu> | 2023-09-30 12:09:57 +0200 |
---|---|---|
committer | Soispha <soispha@vhack.eu> | 2023-09-30 12:09:57 +0200 |
commit | c40c744fe470cf0ccb20abb19aab645692ade60c (patch) | |
tree | 0addde06225b6395625101b46c98b53fc87fd8a5 | |
parent | fix(hm/conf/firefox/search): Only update icons every two days (diff) | |
download | nixos-config-c40c744fe470cf0ccb20abb19aab645692ade60c.tar.gz nixos-config-c40c744fe470cf0ccb20abb19aab645692ade60c.zip |
feat(hm/conf/taskwarrior): Init
Diffstat (limited to '')
-rw-r--r-- | hm/soispha/conf/default.nix | 3 | ||||
-rw-r--r-- | hm/soispha/conf/taskwarrior/default.nix | 9 |
2 files changed, 11 insertions, 1 deletions
diff --git a/hm/soispha/conf/default.nix b/hm/soispha/conf/default.nix index 01d18d4a..18ec5e2e 100644 --- a/hm/soispha/conf/default.nix +++ b/hm/soispha/conf/default.nix @@ -23,14 +23,15 @@ ./mpv ./mumble ./neomutt - ./nvim ./nheko ./npm + ./nvim ./python ./rclone ./ssh ./swayidle ./swaylock + ./taskwarrior ./tridactyl ./yambar ./zsh diff --git a/hm/soispha/conf/taskwarrior/default.nix b/hm/soispha/conf/taskwarrior/default.nix new file mode 100644 index 00000000..c7e9b149 --- /dev/null +++ b/hm/soispha/conf/taskwarrior/default.nix @@ -0,0 +1,9 @@ +{...}: { + programs.taskwarrior = { + enable = true; + colorTheme = "dark-blue-256"; + config = { + # TODO: Add something here <2023-09-30> + }; + }; +} |