summaryrefslogtreecommitdiffstats
path: root/makefu/1systems/pnp.nix
blob: a1b73c0c9248919ea8a519cb786103c96e8c69d8 (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
# Edit this configuration file to define what should be installed on
# your system.  Help is available in the configuration.nix(5) man page
# and in the NixOS manual (accessible by running ‘nixos-help’).

{ config, pkgs, ... }:

{
  imports =
    [ # Include the results of the hardware scan.
      # Base
      ../2configs/tinc-basic-retiolum.nix
      ../2configs/headless.nix

      # HW/FS

      # enables virtio kernel modules in initrd
      <nixpkgs/nixos/modules/profiles/qemu-guest.nix>
      ../2configs/fs/vm-single-partition.nix

      # Services
      ../2configs/git/cgit-retiolum.nix

      ## Reaktor
      ## \/ are only plugins, must enable Reaktor explicitly
      ../2configs/Reaktor/stockholmLentil.nix
      ../2configs/Reaktor/simpleExtend.nix
      ../2configs/Reaktor/random-emoji.nix
      ../2configs/Reaktor/titlebot.nix
      ../2configs/Reaktor/shack-correct.nix

      # ../2configs/graphite-standalone.nix
    ];
  krebs.urlwatch.verbose = true;

  krebs.Reaktor.enable = true;
  krebs.Reaktor.debug = true;
  krebs.Reaktor.nickname = "Reaktor|bot";
  krebs.Reaktor.extraEnviron = {
    REAKTOR_CHANNELS = "#krebs,#binaergewitter,#shackspace";
  };

  krebs.build.host = config.krebs.hosts.pnp;

  nixpkgs.config.packageOverrides = pkgs: { tinc = pkgs.tinc_pre; };


  networking.firewall.allowedTCPPorts = [
  # nginx runs on 80
  80
  # graphite-web runs on 8080, carbon cache runs on 2003 tcp and udp
  # 8080 2003

  # smtp
  25
  ];

  # networking.firewall.allowedUDPPorts = [ 2003 ];

}