stockholm/shared/1systems/wolf.nix

87 lines
2.2 KiB
Nix
Raw Normal View History

2017-04-17 13:45:32 +00:00
{ config, pkgs, ... }:
2015-11-17 21:15:07 +00:00
let
shack-ip = config.krebs.build.host.nets.shack.ip4.addr;
2015-11-17 21:15:07 +00:00
in
2015-10-25 13:07:51 +00:00
{
imports = [
2016-02-15 15:27:11 +00:00
../.
2015-10-25 13:07:51 +00:00
<nixpkgs/nixos/modules/profiles/qemu-guest.nix>
2017-04-17 13:45:32 +00:00
../2configs/cgit-mirror.nix
../2configs/collectd-base.nix
2017-04-17 13:45:32 +00:00
../2configs/graphite.nix
../2configs/repo-sync.nix
2015-11-17 21:15:07 +00:00
../2configs/shack-drivedroid.nix
2017-04-17 13:45:32 +00:00
../2configs/shack-nix-cacher.nix
../2configs/shared-buildbot.nix
2017-03-24 12:00:22 +00:00
../2configs/share-shack.nix
2017-04-19 08:05:12 +00:00
../2configs/central-stats-client.nix
2015-10-25 13:07:51 +00:00
];
2015-11-17 22:13:09 +00:00
# use your own binary cache, fallback use cache.nixos.org (which is used by
# apt-cacher-ng in first place)
2016-01-22 23:27:33 +00:00
# local discovery in shackspace
nixpkgs.config.packageOverrides = pkgs: { tinc = pkgs.tinc_pre; };
krebs.tinc.retiolum.extraConfig = "TCPOnly = yes";
2016-01-22 23:27:33 +00:00
services.grafana = {
enable = true;
addr = "0.0.0.0";
users.allowSignUp = true;
users.allowOrgCreate = true;
users.autoAssignOrg = true;
auth.anonymous.enable = true;
2016-01-22 23:27:33 +00:00
security = import <secrets/grafana_security.nix>;
};
2017-03-08 16:12:26 +00:00
nix = {
binaryCaches = [
"http://localhost:3142/nixos"
"http://cache.prism.r"
"https://cache.nixos.org/"
];
binaryCachePublicKeys = [
"cache.prism-1:+S+6Lo/n27XEtvdlQKuJIcb1yO5NUqUCE2lolmTgNJU="
"hydra.nixos.org-1:CNHJZBh9K4tP3EKF6FkkgeVYsS3ohTl+oS0Qa8bezVs="
];
};
2015-10-25 13:07:51 +00:00
2015-11-17 21:15:07 +00:00
networking = {
2015-11-17 22:13:09 +00:00
firewall.enable = false;
2016-06-13 19:00:15 +00:00
interfaces.enp0s3.ip4 = [{
2015-11-17 21:15:07 +00:00
address = shack-ip;
prefixLength = 20;
}];
defaultGateway = "10.42.0.1";
nameservers = [ "10.42.0.100" "10.42.0.200" ];
2015-11-17 21:15:07 +00:00
};
#####################
# uninteresting stuff
#####################
2015-10-25 13:07:51 +00:00
krebs.build.host = config.krebs.hosts.wolf;
boot.kernel.sysctl = {
# Enable IPv6 Privacy Extensions
"net.ipv6.conf.all.use_tempaddr" = 2;
"net.ipv6.conf.default.use_tempaddr" = 2;
};
boot.initrd.availableKernelModules = [
"ata_piix" "uhci_hcd" "ehci_pci" "virtio_pci" "virtio_blk"
];
boot.kernelModules = [ ];
boot.extraModulePackages = [ ];
boot.loader.grub.enable = true;
boot.loader.grub.version = 2;
boot.loader.grub.device = "/dev/vda";
fileSystems."/" = { device = "/dev/disk/by-label/nixos"; fsType = "ext4"; };
swapDevices = [
2015-11-17 21:15:07 +00:00
{ device = "/dev/disk/by-label/swap"; }
2015-10-25 13:07:51 +00:00
];
time.timeZone = "Europe/Berlin";
}