summaryrefslogtreecommitdiffstats
path: root/lass/2configs/realwallpaper.nix
blob: cf97950719b4578096a7a80a19f9a2085c009f4f (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
{ config, lib, ... }:

let
  hostname = config.krebs.build.host.name;
  inherit (lib)
    nameValuePair
  ;

in {
  krebs.realwallpaper.enable = true;

  services.nginx.virtualHosts.wallpaper = {
    serverAliases = [
      hostname
    ];
    locations."/wallpaper.png".extraConfig = ''
      root /tmp/;
    '';
  };

  krebs.iptables = {
    tables = {
      filter.INPUT.rules = [
        { predicate = "-i retiolum -p tcp --dport 80"; target = "ACCEPT"; }
      ];
    };
  };
}