stockholm/lass/1systems/dishfire/config.nix

98 lines
2.4 KiB
Nix
Raw Normal View History

2015-12-30 16:14:31 +00:00
{ config, lib, pkgs, ... }:
{
imports = [
<stockholm/lass>
<stockholm/lass/2configs/retiolum.nix>
2015-12-30 16:14:31 +00:00
<nixpkgs/nixos/modules/profiles/qemu-guest.nix>
<stockholm/lass/2configs/git.nix>
2015-12-30 16:14:31 +00:00
{
boot.loader.grub = {
device = "/dev/vda";
splashImage = null;
};
boot.initrd.availableKernelModules = [
"ata_piix"
"ehci_pci"
"uhci_hcd"
"virtio_pci"
"virtio_blk"
];
fileSystems."/" = {
device = "/dev/mapper/pool-nix";
fsType = "ext4";
};
2016-04-09 12:14:19 +00:00
fileSystems."/srv/http" = {
device = "/dev/pool/srv_http";
fsType = "ext4";
};
2015-12-30 16:14:31 +00:00
fileSystems."/boot" = {
device = "/dev/vda1";
fsType = "ext4";
};
2016-04-13 14:27:41 +00:00
fileSystems."/bku" = {
device = "/dev/pool/bku";
fsType = "ext4";
};
2015-12-30 16:14:31 +00:00
}
{
networking.dhcpcd.allowInterfaces = [
"enp*"
"eth*"
"ens*"
2015-12-30 16:14:31 +00:00
];
}
{
sound.enable = false;
}
2016-04-13 14:48:00 +00:00
{
environment.systemPackages = with pkgs; [
mk_sql_pair
];
}
2016-04-19 11:22:43 +00:00
{
imports = [
<stockholm/lass/2configs/websites/fritz.nix>
2016-04-19 11:22:43 +00:00
];
krebs.iptables.tables.filter.INPUT.rules = [
{ predicate = "-p tcp --dport http"; target = "ACCEPT"; }
{ predicate = "-p tcp --dport https"; target = "ACCEPT"; }
];
}
{
#TODO: abstract & move to own file
krebs.exim-smarthost = {
enable = true;
relay_from_hosts = map (host: host.nets.retiolum.ip4.addr) [
config.krebs.hosts.mors
config.krebs.hosts.uriel
];
system-aliases = [
{ from = "mailer-daemon"; to = "postmaster"; }
{ from = "postmaster"; to = "root"; }
{ from = "nobody"; to = "root"; }
{ from = "hostmaster"; to = "root"; }
{ from = "usenet"; to = "root"; }
{ from = "news"; to = "root"; }
{ from = "webmaster"; to = "root"; }
{ from = "www"; to = "root"; }
{ from = "ftp"; to = "root"; }
{ from = "abuse"; to = "root"; }
{ from = "noc"; to = "root"; }
{ from = "security"; to = "root"; }
{ from = "root"; to = "lass"; }
];
};
krebs.iptables.tables.filter.INPUT.rules = [
{ predicate = "-p tcp --dport smtp"; target = "ACCEPT"; }
];
}
2015-12-30 16:14:31 +00:00
];
krebs.build.host = config.krebs.hosts.dishfire;
}