about summary refs log tree commit diff
path: root/modules/user/profpatsch/services/gonic.nix
blob: f05085a60263c2d847112635fb6cd0664e3719f6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{ config, lib, pkgs, ... }:

let
  cfg = config.vuizvui.services.profpatsch.gonic;
  gonicDataDir = "/var/lib/gonic";
  systemdDataDirSuffix = "gonic"; # implicitly scoped to /var/lib
  userName = "gonic";

  inherit (pkgs.vuizvui.profpatsch)
    writeExecline
    lru-dir
    getBins
    ;

  bins = getBins pkgs.gonic [ "gonic" ]
    ;

in {

   options.vuizvui.services.profpatsch.gonic = {
     enable = lib.mkEnableOption "gonic server";

     listenAddress = lib.mkOption {
       description = "daemon listen address";
       type = lib.types.str;
     };

     musicDir = lib.mkOption {
       description = "path to the music directory; must exist beforehand and have the right group permissions";
       type = lib.types.path;
     };
     musicDirGroup = lib.mkOption {
       description = "user group to access music directory";
       type = lib.types.str;
     };

     podcastDir = lib.mkOption {
       description = "path to the podcast directory; must exist beforehand and have the right group permissions";
       type = lib.types.path;
     };
     podcastDirGroup = lib.mkOption {
       description = "user group to access podcast directory";
       type = lib.types.str;
     };

     scanIntervalMinutes = lib.mkOption {
       description = "interval (in minutes) to check for new music (automatic scanning disabled if omitted)";
       type = lib.types.nullOr lib.types.ints.positive;
       default = null;
       example = 10;
     };
   };

   config = lib.mkIf cfg.enable {
     users.users.${userName} = {
       isSystemUser = true;
       createHome = true;
       home = gonicDataDir;
     };

     systemd.services.gonic = {
       wantedBy = [ "default.target" ];
       serviceConfig = {
         ExecStart = writeExecline "start-gonic" {} ([
           bins.gonic
           "-listen-addr" cfg.listenAddress
           "-cache-path" "${gonicDataDir}/cache"
           "-db-path" "${gonicDataDir}/db.sqlite"
           "-music-path" cfg.musicDir
           "-podcast-path" cfg.podcastDir
         ]
         ++ lib.optionals (cfg.scanIntervalMinutes != null) [
           "-scan-interval" (toString cfg.scanIntervalMinutes)
         ]);
         StateDirectory = systemdDataDirSuffix;
         User = userName;
         SupplementaryGroups = [ cfg.musicDirGroup cfg.podcastDirGroup ];
       };
     };

   };
}