stockholm/makefu/1systems/gum.nix

94 lines
2.2 KiB
Nix
Raw Normal View History

2015-10-28 14:06:41 +00:00
{ config, lib, pkgs, ... }:
2016-02-14 15:43:44 +00:00
with config.krebs.lib;
2015-10-28 14:06:41 +00:00
let
external-ip = head config.krebs.build.host.nets.internet.addrs4;
internal-ip = head config.krebs.build.host.nets.retiolum.addrs4;
in {
imports = [
2016-02-15 15:27:11 +00:00
../.
2015-10-28 14:06:41 +00:00
../2configs/tinc-basic-retiolum.nix
../2configs/headless.nix
2015-11-14 00:49:31 +00:00
../2configs/fs/simple-swap.nix
2015-11-10 11:58:32 +00:00
../2configs/fs/single-partition-ext4.nix
2015-12-29 20:20:36 +00:00
../2configs/smart-monitor.nix
2015-10-28 14:06:41 +00:00
# ../2configs/iodined.nix
2015-11-17 12:54:55 +00:00
../2configs/git/cgit-retiolum.nix
../2configs/mattermost-docker.nix
../2configs/nginx/euer.test.nix
2016-02-01 20:58:54 +00:00
../2configs/nginx/update.connector.one.nix
2016-02-17 02:13:42 +00:00
../2configs/deployment/mycube.connector.one.nix
2015-12-24 19:51:58 +00:00
../2configs/exim-retiolum.nix
../2configs/urlwatch.nix
2015-12-29 20:20:36 +00:00
2015-10-28 14:06:41 +00:00
];
2015-11-10 17:53:31 +00:00
services.smartd.devices = [ { device = "/dev/sda";} ];
nixpkgs.config.packageOverrides = pkgs: { tinc = pkgs.tinc_pre; };
###### stable
2015-11-10 17:53:31 +00:00
krebs.build.host = config.krebs.hosts.gum;
krebs.retiolum.extraConfig = ''
ListenAddress = ${external-ip} 53
ListenAddress = ${external-ip} 655
ListenAddress = ${external-ip} 21031
'';
krebs.nginx.servers.cgit.server-names = [
"cgit.euer.krebsco.de"
];
2015-11-10 18:36:46 +00:00
# Chat
environment.systemPackages = with pkgs;[
weechat
2015-12-03 19:39:01 +00:00
bepasty-client-cli
get
2015-11-10 18:36:46 +00:00
];
services.bitlbee.enable = true;
2015-11-10 17:53:31 +00:00
# Hardware
2015-11-10 11:58:32 +00:00
boot.loader.grub.device = "/dev/sda";
boot.initrd.availableKernelModules = [ "pata_via" "uhci_hcd" ];
boot.kernelModules = [ "kvm-intel" ];
2015-11-10 17:53:31 +00:00
# Network
2015-11-10 11:58:32 +00:00
services.udev.extraRules = ''
SUBSYSTEM=="net", ATTR{address}=="c8:0a:a9:c8:ee:dd", NAME="et0"
'';
2015-11-13 11:24:29 +00:00
boot.kernelParams = [ "ipv6.disable=1" ];
2015-10-28 14:06:41 +00:00
networking = {
2015-11-13 11:24:29 +00:00
enableIPv6 = false;
firewall = {
allowPing = true;
logRefusedConnections = false;
allowedTCPPorts = [
# smtp
25
# http
80 443
# tinc
655
# tinc-shack
21032
# tinc-retiolum
21031
2015-11-13 11:24:29 +00:00
];
allowedUDPPorts = [
# tinc
655 53
# tinc-retiolum
21031
# tinc-shack
21032
2015-11-13 11:24:29 +00:00
];
2015-11-10 17:53:31 +00:00
};
2015-11-10 11:58:32 +00:00
interfaces.et0.ip4 = [{
2015-10-28 14:06:41 +00:00
address = external-ip;
prefixLength = 24;
}];
defaultGateway = "195.154.108.1";
nameservers = [ "8.8.8.8" ];
};
}