summaryrefslogtreecommitdiffstats
path: root/makefu/1systems/darth
diff options
context:
space:
mode:
authormakefu <github@syntax-fehler.de>2017-07-15 18:57:16 +0200
committermakefu <github@syntax-fehler.de>2017-07-15 18:57:16 +0200
commitfa38155eec9563dc9dc620a77900d87b97443cfe (patch)
tree6000436cba63e03a21556fb6c2d6ebb67eb5b3b0 /makefu/1systems/darth
parent3698f2a40c2db7df0888974c9b2e347947088a98 (diff)
ma: move systems to subdir, init source
Diffstat (limited to 'makefu/1systems/darth')
-rw-r--r--makefu/1systems/darth/config.nix80
1 files changed, 80 insertions, 0 deletions
diff --git a/makefu/1systems/darth/config.nix b/makefu/1systems/darth/config.nix
new file mode 100644
index 00000000..b3902117
--- /dev/null
+++ b/makefu/1systems/darth/config.nix
@@ -0,0 +1,80 @@
+{ config, pkgs, lib, ... }:
+
+with import <stockholm/lib>;
+let
+ byid = dev: "/dev/disk/by-id/" + dev;
+ rootDisk = byid "ata-ADATA_SSD_S599_64GB_10460000000000000039";
+ auxDisk = byid "ata-HGST_HTS721010A9E630_JR10006PH3A02F";
+ dataPartition = auxDisk + "-part1";
+
+ allDisks = [ rootDisk ]; # auxDisk
+in {
+ imports = [
+ ../.
+ ../2configs/fs/single-partition-ext4.nix
+ ../2configs/zsh-user.nix
+ ../2configs/smart-monitor.nix
+ ../2configs/exim-retiolum.nix
+ ../2configs/virtualization.nix
+
+ ../2configs/tinc/retiolum.nix
+ ../2configs/temp-share-samba.nix
+ ];
+ services.samba.shares = {
+ isos = {
+ path = "/data/isos/";
+ "read only" = "yes";
+ browseable = "yes";
+ "guest ok" = "yes";
+ };
+ };
+ services.tinc.networks.siem = {
+ name = "sdarth";
+ extraConfig = "ConnectTo = sjump";
+ };
+
+ makefu.forward-journal = {
+ enable = true;
+ src = "10.8.10.2";
+ dst = "10.8.10.6";
+ };
+
+ #networking.firewall.enable = false;
+
+ boot.kernelModules = [ "coretemp" "f71882fg" ];
+ hardware.enableAllFirmware = true;
+ nixpkgs.config.allowUnfree = true;
+ networking = {
+ wireless.enable = true;
+ firewall = {
+ allowPing = true;
+ logRefusedConnections = false;
+ trustedInterfaces = [ "eno1" ];
+ allowedUDPPorts = [ 80 655 1655 67 ];
+ allowedTCPPorts = [ 80 655 1655 ];
+ };
+ # fallback connection to the internal virtual network
+ interfaces.virbr3.ip4 = [{
+ address = "10.8.8.2";
+ prefixLength = 24;
+ }];
+ };
+
+ # TODO smartd omo darth gum all-in-one
+ services.smartd.devices = builtins.map (x: { device = x; }) allDisks;
+ zramSwap.enable = true;
+
+ #fileSystems."/data" = {
+ # device = dataPartition;
+ # fsType = "ext4";
+ #};
+
+ boot.loader.grub.device = rootDisk;
+
+ users.users.root.openssh.authorizedKeys.keys = [
+ config.krebs.users.makefu-omo.pubkey
+ config.krebs.users.makefu-vbob.pubkey
+ ];
+
+ krebs.build.host = config.krebs.hosts.darth;
+}