From f3eaf668820a41ec78a6b6d8aedb078b4a87372e Mon Sep 17 00:00:00 2001 From: Matthias Beyer Date: Mon, 20 Dec 2021 18:37:01 +0100 Subject: Add service module for timetagger Signed-off-by: Matthias Beyer --- nixos/modules/services/web-apps/timetagger.nix | 77 ++++++++++++++++++++++++++ 1 file changed, 77 insertions(+) create mode 100644 nixos/modules/services/web-apps/timetagger.nix (limited to 'nixos/modules/services/web-apps/timetagger.nix') diff --git a/nixos/modules/services/web-apps/timetagger.nix b/nixos/modules/services/web-apps/timetagger.nix new file mode 100644 index 00000000000..9dad949b093 --- /dev/null +++ b/nixos/modules/services/web-apps/timetagger.nix @@ -0,0 +1,77 @@ +{ config, lib, pkgs, ... }: + +let + inherit (lib) mkEnableOption mkIf mkOption types literalExpression; + + cfg = config.services.timetagger; +in { + + options = { + services.timetagger = { + enable = mkEnableOption '' + Tag your time, get the insight + + + This app does not do authentication. + You must setup authentication yourself or run it in an environment where + only allowed users have access. + + ''; + + bindAddr = mkOption { + description = "Address to bind to."; + type = types.str; + default = "127.0.0.1"; + }; + + port = mkOption { + description = "Port to bind to."; + type = types.port; + default = 8080; + }; + + package = mkOption { + description = '' + Use own package for starting timetagger web application. + + The ${literalExpression ''pkgs.timetagger''} package only provides a + "run.py" script for the actual package + ${literalExpression ''pkgs.python3Packages.timetagger''}. + + If you want to provide a "run.py" script for starting timetagger + yourself, you can do so with this option. + If you do so, the 'bindAddr' and 'port' options are ignored. + ''; + + default = null; + type = types.package; + }; + }; + }; + + config = let + timetaggerPkg = if !isNull cfg.package then cfg.package else + pkgs.timetagger.overwriteAttrs { + addr = cfg.bindAddr; + port = cfg.port; + }; + + in mkIf cfg.enable { + systemd.services.timetagger = { + description = "Timetagger service"; + wantedBy = [ "multi-user.target" ]; + + serviceConfig = { + User = "timetagger"; + Group = "timetagger"; + StateDirectory = "timetagger"; + + ExecStart = "${timetaggerPkg}/bin/timetagger"; + + Restart = "on-failure"; + RestartSec = 1; + }; + }; + }; +} + -- cgit 1.4.1