Compare commits

...

2 commits

Author SHA1 Message Date
vorboyvo 867fdd9174 Removed some KDE programs (dolphin, gwenview, okular). Installed josm and taskwarrior. 2024-09-11 14:11:25 -04:00
vorboyvo 0d5ce9e089 Updated flake.lock. 2024-09-05 15:28:02 -04:00
3 changed files with 25 additions and 9 deletions

View file

@ -7,11 +7,11 @@
]
},
"locked": {
"lastModified": 1719180626,
"narHash": "sha256-vZAzm5KQpR6RGple1dzmSJw5kPivES2heCFM+ZWkt0I=",
"lastModified": 1724435763,
"narHash": "sha256-UNky3lJNGQtUEXT2OY8gMxejakSWPTfWKvpFkpFlAfM=",
"owner": "nix-community",
"repo": "home-manager",
"rev": "6b1f90a8ff92e81638ae6eb48cd62349c3e387bb",
"rev": "c2cd2a52e02f1dfa1c88f95abeb89298d46023be",
"type": "github"
},
"original": {
@ -22,11 +22,11 @@
},
"nixpkgs": {
"locked": {
"lastModified": 1719254875,
"narHash": "sha256-ECni+IkwXjusHsm9Sexdtq8weAq/yUyt1TWIemXt3Ko=",
"lastModified": 1724479785,
"narHash": "sha256-pP3Azj5d6M5nmG68Fu4JqZmdGt4S4vqI5f8te+E/FTw=",
"owner": "NixOS",
"repo": "nixpkgs",
"rev": "2893f56de08021cffd9b6b6dfc70fd9ccd51eb60",
"rev": "d0e1602ddde669d5beb01aec49d71a51937ed7be",
"type": "github"
},
"original": {

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;
};
}