aboutsummaryrefslogtreecommitdiff
path: root/example.nix
blob: 4c66bc9dd6c6a312df3507b6827dc7d586cfc860 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{config, pkgs, ...}:

{
  imports = [ ./default.nix ];

  services.picarones = {
    enable = true;
    frontend = {
      enable = true;
      domain = "10.233.4.2";
    };
  };

  networking.firewall.allowedTCPPorts = [ 80 ];
}