aboutsummaryrefslogtreecommitdiff
path: root/modules/webapps/fiche.nix
blob: 9061b2eaae4e628348d97cb06d6bb5e1207d864e (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
{ lib, pkgs, config, ... }:
let
  cfg = config.services.fiche;
in
{
  options.services.fiche = {
    enable = lib.mkEnableOption "Enable fiche’s service";
    port = lib.mkOption {
      type = lib.types.port;
      description = "Port to listen to";
    };
    domain = lib.mkOption {
      type = lib.types.str;
      description = "Domain";
    };
    dataDir = lib.mkOption {
      type = lib.types.path;
      default = "/var/lib/fiche";
      description = "Directory where to place the pastes";
    };
    https = lib.mkEnableOption "Use https";
  };

  config = lib.mkIf cfg.enable {
    networking.firewall.allowedTCPPorts = [ cfg.port ];


    system.activationScripts.fiche = ''
      mkdir -p /var/lib/fiche
    '';
    systemd.services.fiche = {
      description = "Fiche server";
      wantedBy = [ "multi-user.target" ];
      after = [ "network.target" ];

      script = ''
        exec ${pkgs.fiche}/bin/fiche -o ${cfg.dataDir} -d ${cfg.domain} ${lib.optionalString cfg.https "-S "} -p ${builtins.toString cfg.port}
      '';

      serviceConfig = {
        ExecStartPre = [
          "+${pkgs.coreutils}/bin/install -m 0755 -o fiche -d /var/lib/fiche"
        ];
        DynamicUser = true;
        User = "fiche";
        PrivateTmp = true;
        Restart = "always";
        WorkingDirectory = cfg.dataDir;
        ReadWritePaths = cfg.dataDir;
      };
    };
  };
}