stockholm/lass/1systems/cloudkrebs.nix

53 lines
1.1 KiB
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
{
nix.maxJobs = 1;
sound.enable = false;
}
2015-07-21 17:04:40 +00:00
];
2015-07-28 18:28:21 +00:00
krebs.build = {
user = config.krebs.users.lass;
2015-07-28 18:28:21 +00:00
host = config.krebs.hosts.cloudkrebs;
source = {
dir.secrets = {
host = config.krebs.hosts.mors;
path = "/home/lass/secrets/${config.krebs.build.host.name}";
2015-07-28 18:28:21 +00:00
};
dir.stockholm = {
host = config.krebs.hosts.mors;
path = "/home/lass/dev/stockholm";
2015-07-28 18:28:21 +00:00
};
};
};
2015-07-21 17:04:40 +00:00
networking.hostName = "cloudkrebs";
}