summaryrefslogtreecommitdiff
path: root/Com/Simatime/Serval/configuration.nix
blob: d5ad02f42d94382aa4b07f54e4c7db132642a287 (plain)
1
2
3
4
5
6
7
8
9
10
11
{ config, pkgs, ... }:
{
  networking.firewall.allowedTCPPorts = [ 22 80 443 ];
  services.que-server = {
    enable = true;
    domain = "que.run";
    port = 3000;
    package = pkgs.biz.que-server;
  };
  services.nginx.enable = true;
}