Compare commits

..

No commits in common. "867fdd9174064e635d062e2f3131766b6eebeeed" and "ee99a21203d69539e66fd1094add65b081e303a0" have entirely different histories.

3 changed files with 9 additions and 25 deletions

View file

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

View file

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

View file

@ -1,17 +0,0 @@
{ 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;
};
}