stockholm/lass/2configs/blue.nix

35 lines
896 B
Nix
Raw Normal View History

2018-05-20 10:20:10 +02:00
with (import <stockholm/lib>);
{ config, lib, pkgs, ... }:
{
imports = [
./mail.nix
./pass.nix
];
2018-06-08 04:59:55 +02:00
environment.systemPackages = with pkgs; [
ag
2018-09-14 11:40:48 +02:00
dic
2018-06-08 04:59:55 +02:00
nmap
2018-07-28 19:14:53 +02:00
git-preview
2018-11-10 19:00:04 +01:00
l-gen-secrets
2018-06-08 04:59:55 +02:00
];
2018-05-20 10:20:10 +02:00
services.tor.enable = true;
2020-04-18 14:55:39 +02:00
services.tor.client.enable = true;
2018-05-20 10:20:10 +02:00
krebs.iptables.tables.filter.INPUT.rules = [
{ predicate = "-i retiolum -p udp --dport 60000:61000"; target = "ACCEPT";}
2018-12-16 16:11:02 +01:00
{ predicate = "-i wiregrill -p udp --dport 60000:61000"; target = "ACCEPT";}
2019-04-07 19:05:03 +02:00
{ predicate = "-i retiolum -p tcp --dport 9998:9999"; target = "ACCEPT";}
{ predicate = "-i wiregrill -p tcp --dport 9998:9999"; target = "ACCEPT";}
2020-09-27 15:31:40 +02:00
{ predicate = "-i retiolum -p tcp --dport imap"; target = "ACCEPT";}
{ predicate = "-i wiregrill -p tcp --dport imap"; target = "ACCEPT";}
2018-05-20 10:20:10 +02:00
];
2020-09-27 15:31:40 +02:00
services.dovecot2 = {
enable = true;
mailLocation = "maildir:~/Maildir";
};
2018-05-20 10:20:10 +02:00
}