stockholm/makefu/1systems/wbob.nix

92 lines
2.4 KiB
Nix
Raw Normal View History

2016-08-23 17:13:50 +00:00
{ config, pkgs, lib, ... }:
2017-05-12 09:29:46 +00:00
let
2016-08-23 17:13:50 +00:00
rootdisk = "/dev/disk/by-id/ata-TS256GMTS800_C613840115";
datadisk = "/dev/disk/by-id/ata-HGST_HTS721010A9E630_JR10006PH3A02F";
2017-05-12 09:29:46 +00:00
user = config.makefu.gui.user;
2016-07-20 18:35:30 +00:00
in {
2016-01-19 19:26:38 +00:00
imports =
[ # Include the results of the hardware scan.
2016-02-15 15:27:11 +00:00
../.
2016-08-23 17:13:50 +00:00
../2configs/zsh-user.nix
2017-03-08 13:20:17 +00:00
../2configs/tools/core.nix
../2configs/tools/core-gui.nix
../2configs/tools/extra-gui.nix
../2configs/tools/media.nix
2016-07-20 18:35:30 +00:00
../2configs/virtualization.nix
../2configs/tinc/retiolum.nix
2017-05-11 14:06:41 +00:00
../2configs/mqtt.nix
../2configs/deployment/led-fader.nix
2017-05-12 09:29:46 +00:00
# ../2configs/gui/wbob-kiosk.nix
../2configs/gui/studio.nix
2017-05-12 09:32:29 +00:00
../2configs/audio/jack-on-pulse.nix
../2configs/audio/realtime-audio.nix
2017-05-12 09:29:46 +00:00
../2configs/vncserver.nix
2016-01-19 19:26:38 +00:00
];
2016-08-23 17:13:50 +00:00
2016-02-11 16:05:00 +00:00
krebs = {
enable = true;
build.host = config.krebs.hosts.wbob;
};
2016-08-23 17:13:50 +00:00
swapDevices = [ { device = "/var/swap"; } ];
2016-02-11 16:05:00 +00:00
2016-08-23 17:13:50 +00:00
networking.firewall.allowedUDPPorts = [ 655 ];
networking.firewall.allowedTCPPorts = [ 655 49152 ];
2017-05-11 14:06:41 +00:00
networking.firewall.trustedInterfaces = [ "enp0s25" ];
2016-08-23 17:13:50 +00:00
#services.tinc.networks.siem = {
# name = "display";
# extraConfig = ''
# ConnectTo = sjump
# Port = 1655
# '';
#};
2016-02-11 16:05:00 +00:00
# rt2870.bin wifi card, part of linux-unfree
hardware.enableAllFirmware = true;
nixpkgs.config.allowUnfree = true;
networking.wireless.enable = true;
# rt2870 with nonfree creates wlp2s0 from wlp0s20u2
# not explicitly setting the interface results in wpa_supplicant to crash
networking.wireless.interfaces = [ "wlp2s0" ];
2016-10-19 10:31:13 +00:00
networking.interfaces.virbr1.ip4 = [{
address = "10.8.8.11";
prefixLength = 24;
}];
2016-02-11 16:05:00 +00:00
# nuc hardware
2016-07-20 18:35:30 +00:00
boot.loader.grub.device = rootdisk;
2016-02-11 16:05:00 +00:00
hardware.cpu.intel.updateMicrocode = true;
boot.initrd.availableKernelModules = [ "xhci_pci" "ehci_pci" "ahci" "usbhid" "usb_storage" "sd_mod" ];
boot.kernelModules = [ "kvm-intel" ];
2016-08-23 17:13:50 +00:00
fileSystems = {
"/" = {
2016-07-20 18:35:30 +00:00
device = rootdisk + "-part1";
2016-02-11 16:05:00 +00:00
fsType = "ext4";
2016-08-23 17:13:50 +00:00
};
"/data" = {
device = datadisk + "-part1";
fsType = "ext4";
};
2016-02-11 16:05:00 +00:00
};
# DualHead on NUC
2016-06-27 10:51:21 +00:00
# TODO: update synergy package with these extras (username)
# TODO: add crypto layer
systemd.services."synergy-client" = {
environment.DISPLAY = ":0";
2017-05-12 09:29:46 +00:00
serviceConfig.User = user;
2016-06-27 10:51:21 +00:00
};
2016-02-11 16:05:00 +00:00
2016-06-27 10:51:21 +00:00
services.synergy = {
client = {
enable = true;
screenName = "wbob";
2016-07-28 10:58:54 +00:00
serverAddress = "x.r";
2016-06-27 10:51:21 +00:00
};
};
2016-01-19 19:26:38 +00:00
}