nixos-config/1systems/wbob.nix

73 lines
2 KiB
Nix
Raw Normal View History

2016-01-19 20:26:38 +01:00
{ config, pkgs, ... }:
2016-07-20 20:35:30 +02:00
let rootdisk = "/dev/disk/by-id/ata-TS256GMTS800_C613840115";
in {
2016-06-27 12:51:21 +02:00
makefu.awesome = {
modkey = "Mod1";
2016-06-27 12:59:16 +02:00
#TODO: integrate kiosk config into full config by templating the autostart
2016-06-27 12:51:21 +02:00
baseConfig = pkgs.awesomecfg.kiosk;
};
2016-01-19 20:26:38 +01:00
imports =
[ # Include the results of the hardware scan.
2016-02-15 16:27:11 +01:00
../.
2016-01-19 20:26:38 +01:00
../2configs/main-laptop.nix
2016-07-20 20:35:30 +02:00
../2configs/virtualization.nix
../2configs/tinc/retiolum.nix
2016-01-19 20:26:38 +01:00
];
2016-02-11 17:05:00 +01:00
krebs = {
enable = true;
build.host = config.krebs.hosts.wbob;
};
2016-06-27 12:51:21 +02:00
networking.firewall.allowedUDPPorts = [ 1655 ];
2016-07-20 20:35:30 +02:00
networking.firewall.allowedTCPPorts = [ 1655 49152 ];
2016-06-27 12:51:21 +02:00
services.tinc.networks.siem = {
name = "display";
extraConfig = ''
ConnectTo = sjump
'';
};
2016-02-11 17:05:00 +01: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" ];
# nuc hardware
2016-07-20 20:35:30 +02:00
boot.loader.grub.device = rootdisk;
2016-02-11 17:05:00 +01:00
hardware.cpu.intel.updateMicrocode = true;
boot.initrd.availableKernelModules = [ "xhci_pci" "ehci_pci" "ahci" "usbhid" "usb_storage" "sd_mod" ];
boot.kernelModules = [ "kvm-intel" ];
fileSystems."/" = {
2016-07-20 20:35:30 +02:00
device = rootdisk + "-part1";
2016-02-11 17:05:00 +01:00
fsType = "ext4";
};
# DualHead on NUC
services.xserver = {
# xrandrHeads = [ "HDMI1" "HDMI2" ];
# prevent screen from turning off, disable dpms
displayManager.sessionCommands = ''
xset s off -dpms
xrandr --output HDMI2 --right-of HDMI1
'';
};
2016-06-27 12:51:21 +02:00
# TODO: update synergy package with these extras (username)
# TODO: add crypto layer
systemd.services."synergy-client" = {
environment.DISPLAY = ":0";
serviceConfig.User = "makefu";
};
2016-02-11 17:05:00 +01:00
2016-06-27 12:51:21 +02:00
services.synergy = {
client = {
enable = true;
screenName = "wbob";
2016-07-28 12:58:54 +02:00
serverAddress = "x.r";
2016-06-27 12:51:21 +02:00
};
};
2016-01-19 20:26:38 +01:00
}