From 117ea3db255df2346f0f7ea83b45d04fadd6ddc6 Mon Sep 17 00:00:00 2001 From: Till Date: Tue, 4 Jul 2023 18:35:39 +0200 Subject: [PATCH] test --- home/default.nix | 11 ++++++++++- system/hardware-nova.nix | 6 ++++++ 2 files changed, 16 insertions(+), 1 deletion(-) diff --git a/home/default.nix b/home/default.nix index d3922a6..f587184 100644 --- a/home/default.nix +++ b/home/default.nix @@ -63,7 +63,6 @@ vdirsyncer khal khard - taskwarrior taskopen gnome.gnome-sound-recorder zoom-us @@ -140,5 +139,15 @@ }; }; }; + + programs.taskwarrior = { + enable = true; + config = { + data.location = "${config.xdg.dataHome}/taskwarrior/tasks"; + hooks.location = "${config.xdg.dataHome}/taskwarrior/tasks"; + report.list.columns = ["id" "depends.indicator" "priority" "project" "recur.indicator" "scheduled.countdown" "due" "until.age" "status.short" "description.count" "tags"]; + report.list.labels= ["ID" "D" "Prio" "Proj" "R" "Scheduled" "Due" "Until" "S" "Description" "Tags"]; + }; + }; } diff --git a/system/hardware-nova.nix b/system/hardware-nova.nix index aabf5e2..b4611ad 100644 --- a/system/hardware-nova.nix +++ b/system/hardware-nova.nix @@ -27,6 +27,12 @@ options = [ "subvol=home" "compress=zstd" ]; }; + fileSystems."/home/till/.local/share/Steam" = + { device = "/dev/disk/by-uuid/6a0d25d4-0253-4467-85cc-ab3e0ef71f54"; + fsType = "btrfs"; + options = [ "subvol=steam" "compress=zstd" "noatime"]; + }; + fileSystems."/nix" = { device = "/dev/disk/by-uuid/6a0d25d4-0253-4467-85cc-ab3e0ef71f54"; fsType = "btrfs";