summaryrefslogtreecommitdiff
path: root/custom/bar-service.nix
blob: 2a492ce175f3daf8605ff679f58b186f1424bea6 (plain)
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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{ config, lib, pkgs, ... }:

with lib;

let
  cfg = config.services.bar;
in {
  options.services.bar = {
    enable = mkEnableOption "the Bar Inventory System";

    user = mkOption {
      type = types.str;
      default = "bar";
      description = "User to execute the daemon under";
    };

    group = mkOption {
      type = types.str;
      default = "bar";
      description = "Group to execute the daemon under";
    };

    stateDir = mkOption {
      type = types.path;
      default = "/var/lib/bar";
      description = "Directory for the daemon to store semi-transient state (encryption keys etc.)";
    };

    port = mkOption {
      type = types.int;
      default = 8080;
      description = "Port for the daemon to listen on";
    };

    host = mkOption {
      type = types.str;
      default = "localhost";
      description = "Host to bind to";
    };

    approot = mkOption {
      type = types.str;
      default = "/";
      description = "Subdirectory of the daemon-managed site relative to HTTP /; only useful when using a reverse proxy";
    };

    thermoprintBaseURL = mkOption {
      type = with types; nullOr types.str;
      default = null;
      example = "http://localhost:80/thermoprint/api";
      description = "Thermoprint base url";
    };
  };

  config = mkIf cfg.enable {
    assertions = [
      { assertion = config.services.postgresql.enable;
        message = "bar requires PostgreSQL";
      }
    ];

    users.users."${cfg.user}" = {
      group = cfg.group;
      description = "User for the Bar Inventory System";
      isSystemUser = true;
      home = cfg.stateDir;
      createHome = true;
    };

    users.groups."${cfg.group}" = {};

    nixpkgs.overlays = [(self: super: {
      bar = self.callPackage ./bar { inherit (self) haskellPackages; };
    })];

    systemd.services."bar" = {
      environment = {
        PORT = cfg.port;
        HOST = cfg.host;
        APPROOT = cfg.approot;
        IP_FROM_HEADER = cfg.ipFromHeader;
        TPRINT_BASEURL = mkIf (cfg.thermoprintBaseURL != null) cfg.thermoprintBaseURL;
      };

      bindsTo = [ "postgresql.service" ];
      after = [ "postgresql.service" ];
      wantedBy = [ "default.target" ];

      serviceConfig = {
        Type = "notify";
        User = cfg.user;
        Group = cfg.group;
        WorkingDirectory = cfg.stateDir;

        ExecStart = with pkgs; "${bar}/bin/bar";
      };
    };
  };
}