2015-10-03 17:34:37 +00:00
|
|
|
{ config, lib, pkgs, ... }:
|
2015-07-21 17:04:40 +00:00
|
|
|
|
2015-10-03 17:34:37 +00:00
|
|
|
let
|
2017-07-11 09:26:24 +00:00
|
|
|
inherit (import <stockholm/lass/4lib> { inherit pkgs lib; }) getDefaultGateway;
|
2016-04-08 01:53:34 +00:00
|
|
|
ip = config.krebs.build.host.nets.internet.ip4.addr;
|
2015-10-03 17:34:37 +00:00
|
|
|
in {
|
2015-07-21 17:04:40 +00:00
|
|
|
imports = [
|
2017-07-11 09:26:24 +00:00
|
|
|
<stockholm/lass>
|
|
|
|
<stockholm/lass/2configs/retiolum.nix>
|
|
|
|
<stockholm/lass/2configs/os-templates/CAC-CentOS-7-64bit.nix>
|
|
|
|
<stockholm/lass/2configs/exim-retiolum.nix>
|
|
|
|
<stockholm/lass/2configs/git.nix>
|
|
|
|
<stockholm/lass/2configs/realwallpaper.nix>
|
|
|
|
<stockholm/lass/2configs/privoxy-retiolum.nix>
|
2015-07-21 17:04:40 +00:00
|
|
|
{
|
|
|
|
networking.interfaces.enp2s1.ip4 = [
|
|
|
|
{
|
2015-10-03 17:34:37 +00:00
|
|
|
address = ip;
|
2015-07-21 17:04:40 +00:00
|
|
|
prefixLength = 24;
|
|
|
|
}
|
|
|
|
];
|
2015-10-03 17:34:37 +00:00
|
|
|
networking.defaultGateway = getDefaultGateway ip;
|
2015-07-21 17:04:40 +00:00
|
|
|
networking.nameservers = [
|
|
|
|
"8.8.8.8"
|
|
|
|
];
|
|
|
|
|
|
|
|
}
|
2015-10-17 13:57:43 +00:00
|
|
|
{
|
|
|
|
sound.enable = false;
|
|
|
|
}
|
2015-07-21 17:04:40 +00:00
|
|
|
];
|
|
|
|
|
2015-10-19 12:00:15 +00:00
|
|
|
krebs.build.host = config.krebs.hosts.cloudkrebs;
|
2015-07-21 17:04:40 +00:00
|
|
|
}
|