Removed some KDE programs (dolphin, gwenview, okular). Installed josm and taskwarrior.
This commit is contained in:
parent
0d5ce9e089
commit
867fdd9174
|
|
@ -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
17
programs/taskwarrior.nix
Normal 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;
|
||||
};
|
||||
}
|
||||
Loading…
Reference in a new issue