Removed some KDE programs (dolphin, gwenview, okular). Installed josm and taskwarrior.

This commit is contained in:
vorboyvo 2024-09-11 14:11:25 -04:00
parent 0d5ce9e089
commit 867fdd9174
2 changed files with 19 additions and 3 deletions

View file

@ -9,6 +9,7 @@ in {
../../programs/kdeconnect.nix
../../programs/ssh.nix
../../programs/zsh.nix
../../programs/taskwarrior.nix
];
home.username = "alice";
home.homeDirectory = "/home/alice";
@ -94,7 +95,6 @@ in {
[
qutebrowser
cinnamon.nemo
libsForQt5.dolphin
gnome.file-roller
cinnamon.nemo-fileroller
evince
@ -117,8 +117,7 @@ in {
zulip
filezilla
bitwarden
gwenview
libsForQt5.okular
josm
] ++ # Personalized selection of graphical apps
[ mons shticker-book-unwritten flightgear ] ++ # Games
[ swaybg bemenu j4-dmenu-desktop ] ++ # Sway- and Wayland-related packages

17
programs/taskwarrior.nix Normal file
View file

@ -0,0 +1,17 @@
{ config, lib, pkgs, ... }: {
programs.taskwarrior = {
enable = true;
package = pkgs.taskwarrior3;
dataLocation = "~/.task";
colorTheme = "solarized-dark-256";
config = {
"sync.server.url" = "https://task.vorboyvo.com:8443";
"sync.encryption_secret" = "me3FaeWox";
"sync.server.client_id" = "844b44e6-f4ae-4f2f-982d-b9021128958c";
};
};
services.taskwarrior-sync = {
enable = true;
};
}