stockholm/lass/2configs/realwallpaper.nix

53 lines
1.2 KiB
Nix
Raw Normal View History

2018-11-10 20:46:12 +00:00
{ config, lib, pkgs, ... }:
2016-06-25 16:38:30 +00:00
let
hostname = config.krebs.build.host.name;
inherit (lib)
nameValuePair
;
in {
krebs.realwallpaper.enable = true;
2016-06-25 16:38:30 +00:00
system.activationScripts.wallpaper-chmod = ''
2023-09-03 10:10:37 +00:00
${pkgs.coreutils}/bin/chmod +rx /var/realwallpaper
2018-11-10 20:46:12 +00:00
'';
2016-12-26 13:18:08 +00:00
services.nginx.virtualHosts.wallpaper = {
2017-04-15 16:19:15 +00:00
extraConfig = ''
if ( $server_addr = "${config.krebs.build.host.nets.internet.ip4.addr}" ) {
return 403;
}
'';
2016-12-26 13:18:08 +00:00
serverAliases = [
2023-06-03 20:10:25 +00:00
"wallpaper.r"
2016-06-25 16:38:30 +00:00
];
2023-09-03 10:10:37 +00:00
locations."/".extraConfig = ''
autoindex on;
root /var/realwallpaper/;
'';
2017-04-15 15:16:20 +00:00
locations."/realwallpaper.png".extraConfig = ''
root /var/realwallpaper/;
'';
locations."/realwallpaper-krebs.png".extraConfig = ''
2017-04-15 15:16:20 +00:00
root /var/realwallpaper/;
2016-12-26 13:18:08 +00:00
'';
2021-05-02 15:40:21 +00:00
locations."/realwallpaper-krebs-stars.png".extraConfig = ''
root /var/realwallpaper/;
'';
locations."/realwallpaper-krebs-stars-berlin.png".extraConfig = ''
root /var/realwallpaper/;
'';
2021-01-23 19:22:17 +00:00
locations."/realwallpaper-video.mp4".extraConfig = ''
root /var/realwallpaper/archive;
'';
2016-06-25 16:38:30 +00:00
};
krebs.iptables = {
tables = {
filter.INPUT.rules = [
{ predicate = "-i retiolum -p tcp --dport 80"; target = "ACCEPT"; }
];
};
};
}