stockholm/lass/1systems/cloudkrebs.nix

36 lines
756 B
Nix
Raw Normal View History

{ config, lib, pkgs, ... }:
2015-07-21 17:04:40 +00:00
let
inherit (import ../4lib { inherit pkgs lib; }) getDefaultGateway;
inherit (lib) head;
ip = (head config.krebs.build.host.nets.internet.addrs4);
in {
2015-07-21 17:04:40 +00:00
imports = [
2015-10-17 13:57:43 +00:00
../2configs/os-templates/CAC-CentOS-7-64bit.nix
../2configs/base.nix
../2configs/retiolum.nix
../2configs/fastpoke-pages.nix
../2configs/git.nix
../2configs/realwallpaper.nix
2015-07-21 17:04:40 +00:00
{
networking.interfaces.enp2s1.ip4 = [
{
address = ip;
2015-07-21 17:04:40 +00:00
prefixLength = 24;
}
];
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
}