stockholm/makefu/1systems/vbob.nix

89 lines
1.9 KiB
Nix
Raw Normal View History

2015-12-14 13:33:06 +00:00
#
#
#
2015-12-14 16:56:50 +00:00
{ lib, config, pkgs, ... }:
2016-01-18 11:54:03 +00:00
{
2015-12-14 13:33:06 +00:00
krebs.build.host = config.krebs.hosts.vbob;
krebs.build.target = "root@10.10.10.220";
imports =
[ # Include the results of the hardware scan.
<nixpkgs/nixos/modules/virtualisation/virtualbox-image.nix>
../2configs/main-laptop.nix #< base-gui
# environment
2015-12-14 16:56:50 +00:00
2015-12-14 13:33:06 +00:00
];
2016-01-18 11:54:03 +00:00
nixpkgs.config.allowUnfree = true;
nixpkgs.config.packageOverrides = pkgs: {
tinc = pkgs.tinc_pre;
};
makefu.buildbot.master = {
2016-01-18 11:54:03 +00:00
enable = false;
irc = {
enable = true;
server = "cd.retiolum";
channel = "retiolum";
allowForce = true;
};
};
2016-01-18 11:54:03 +00:00
# services.logstash.enable = true;
makefu.buildbot.slave = {
2016-01-18 11:54:03 +00:00
enable = false;
masterhost = "localhost";
username = "testslave";
password = "krebspass";
packages = with pkgs;[ git nix ];
extraEnviron = { NIX_PATH="nixpkgs=${toString <nixpkgs>}"; };
};
krebs.build.source.git.nixpkgs = {
#url = https://github.com/nixos/nixpkgs;
2016-01-18 11:54:03 +00:00
# HTTP Everywhere + libredir
rev = "8239ac6";
};
fileSystems."/nix" = {
device ="/dev/disk/by-label/nixstore";
fsType = "ext4";
};
#makefu.buildbot.master.enable = true;
2015-12-14 16:56:50 +00:00
# allow vbob to deploy self
users.extraUsers = {
root = {
openssh.authorizedKeys.keys = [ config.krebs.users.makefu-vbob.pubkey ];
};
};
2015-12-14 13:33:06 +00:00
environment.systemPackages = with pkgs;[
2016-01-18 11:54:03 +00:00
fortclientsslvpn
buildbot
buildbot-slave
2015-12-14 13:33:06 +00:00
get
2016-01-18 11:54:03 +00:00
genid
logstash
2015-12-14 16:56:50 +00:00
];
2015-12-14 13:33:06 +00:00
networking.firewall.allowedTCPPorts = [
25
80
8010
2015-12-14 13:33:06 +00:00
];
krebs.retiolum = {
enable = true;
extraConfig = "Proxy = http global.proxy.alcatel-lucent.com 8000";
hosts = ../../krebs/Zhosts;
connectTo = [
"gum"
];
};
2015-12-14 13:33:06 +00:00
networking.proxy.default = "http://global.proxy.alcatel-lucent.com:8000";
fileSystems."/media/share" = {
fsType = "vboxsf";
device = "share";
options = "rw,uid=9001,gid=9001";
};
}