blob: e7e2cdc294cae66013df40cc38e933f8c90f4b34 (
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
|
with import <stockholm/lib>;
{ config, pkgs, ... }: let
bestGuessGateway = addr: elemAt (match "(.*)(\.[^.])" addr) 0 + ".1";
in {
krebs.build.host = config.krebs.hosts.cd;
imports = [
<stockholm/tv>
<stockholm/tv/2configs/hw/CAC-Developer-2.nix>
<stockholm/tv/2configs/fs/CAC-CentOS-7-64bit.nix>
# TODO see XXX below
#<stockholm/tv/2configs/exim-smarthost.nix>
<stockholm/tv/2configs/retiolum.nix>
];
networking = let
address = config.krebs.build.host.nets.internet.ip4.addr;
in {
defaultGateway = bestGuessGateway address;
interfaces.enp2s1.ip4 = singleton {
inherit address;
prefixLength = 24;
};
nameservers = ["8.8.8.8"];
};
environment.systemPackages = with pkgs; [
iftop
iotop
iptables
nethogs
tcpdump
];
}
# XXX this should be unnecessary, but when security.wrappers isn't defined,
# then install fails with:
#
# mktemp: failed to create directory via template '/run/wrappers/wrappers.XXXXXXXXXX': No such file or directory
# chmod: missing operand after 'a+rx'
# Try 'chmod --help' for more information.
# ln: failed to create symbolic link './bin': File exists
# cp: cannot create regular file '/run/wrappers/bin/exim': No such file or directory
# chown: cannot access '/run/wrappers/bin/exim': No such file or directory
# chmod: cannot access '/run/wrappers/bin/exim': No such file or directory
# cp: cannot create regular file '/run/wrappers/bin/sendmail': No such file or directory
# chown: cannot access '/run/wrappers/bin/sendmail': No such file or directory
# chmod: cannot access '/run/wrappers/bin/sendmail': No such file or directory
|