summary refs log tree commit diff stats
path: root/system/impermanence
diff options
context:
space:
mode:
authorSoispha <soispha@vhack.eu>2023-10-01 22:07:22 +0200
committerSoispha <soispha@vhack.eu>2023-10-01 22:07:22 +0200
commitcd75ff6797386c5924a2f0bbc62eadf1c6e2725d (patch)
treec52b6a1cb790454eeec4924622c82ccd0ebbfac7 /system/impermanence
parentbuild(flake): Update (diff)
downloadnixos-server-cd75ff6797386c5924a2f0bbc62eadf1c6e2725d.tar.gz
nixos-server-cd75ff6797386c5924a2f0bbc62eadf1c6e2725d.zip
feat(system/services/taskserver): Init
This is the server part used in combination with Taskwarrior to regain
control over the unwieldy amount of task, that accumulate over the day.
Diffstat (limited to 'system/impermanence')
-rw-r--r--system/impermanence/default.nix1
-rw-r--r--system/impermanence/mods/taskserver.nix5
2 files changed, 6 insertions, 0 deletions
diff --git a/system/impermanence/default.nix b/system/impermanence/default.nix
index b60eb4c..6e977b5 100644
--- a/system/impermanence/default.nix
+++ b/system/impermanence/default.nix
@@ -8,6 +8,7 @@
     ./mods/nix-sync.nix
     ./mods/openssh.nix
     ./mods/postgresql.nix
+    ./mods/taskserver.nix
     ./mods/users.nix
   ];
 
diff --git a/system/impermanence/mods/taskserver.nix b/system/impermanence/mods/taskserver.nix
new file mode 100644
index 0000000..9208aa4
--- /dev/null
+++ b/system/impermanence/mods/taskserver.nix
@@ -0,0 +1,5 @@
+{...}: {
+  environment.persistence."/srv".directories = [
+    "/var/lib/taskserver"
+  ];
+}