diff options
author | Soispha <soispha@vhack.eu> | 2023-10-01 22:07:22 +0200 |
---|---|---|
committer | Soispha <soispha@vhack.eu> | 2023-10-01 22:07:22 +0200 |
commit | cd75ff6797386c5924a2f0bbc62eadf1c6e2725d (patch) | |
tree | c52b6a1cb790454eeec4924622c82ccd0ebbfac7 /system/services | |
parent | build(flake): Update (diff) | |
download | nixos-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/services')
-rw-r--r-- | system/services/default.nix | 1 | ||||
-rw-r--r-- | system/services/taskserver/default.nix | 28 |
2 files changed, 29 insertions, 0 deletions
diff --git a/system/services/default.nix b/system/services/default.nix index 9163588..3349b38 100644 --- a/system/services/default.nix +++ b/system/services/default.nix @@ -13,5 +13,6 @@ ./openssh ./rust-motd ./snapper + ./taskserver ]; } diff --git a/system/services/taskserver/default.nix b/system/services/taskserver/default.nix new file mode 100644 index 0000000..56255cd --- /dev/null +++ b/system/services/taskserver/default.nix @@ -0,0 +1,28 @@ +{...}: { + services.taskserver = { + enable = true; + pki.auto = { + expiration = { + server = 365; + crl = 365; + client = 365; + ca = 365; + }; + bits = 4096; + }; + organisations = { + vhack = { + users = [ + "soispha" + ]; + }; + soispha = { + users = [ + "soispha" + ]; + }; + }; + openFirewall = true; + fqdn = "taskserver.vhack.eu"; + }; +} |