96 lines
2.4 KiB
Nix
96 lines
2.4 KiB
Nix
{ config, pkgs, lib, ... }:
|
|
let
|
|
rootdisk = "/dev/disk/by-id/ata-TS256GMTS800_C613840115";
|
|
datadisk = "/dev/disk/by-id/ata-HGST_HTS721010A9E630_JR10006PH3A02F";
|
|
in {
|
|
|
|
imports =
|
|
[ # Include the results of the hardware scan.
|
|
../.
|
|
../2configs/zsh-user.nix
|
|
../2configs/base-gui.nix
|
|
../2configs/laptop-utils.nix
|
|
../2configs/virtualization.nix
|
|
../2configs/tinc/retiolum.nix
|
|
];
|
|
|
|
krebs = {
|
|
enable = true;
|
|
build.host = config.krebs.hosts.wbob;
|
|
};
|
|
|
|
swapDevices = [ { device = "/var/swap"; } ];
|
|
|
|
services.xserver = {
|
|
layout = lib.mkForce "de";
|
|
|
|
windowManager = lib.mkForce {
|
|
awesome.enable = false;
|
|
default = "none";
|
|
};
|
|
desktopManager.xfce.enable = true;
|
|
|
|
# xrandrHeads = [ "HDMI1" "HDMI2" ];
|
|
# prevent screen from turning off, disable dpms
|
|
displayManager.sessionCommands = ''
|
|
xset s off -dpms
|
|
xrandr --output HDMI2 --right-of HDMI1
|
|
'';
|
|
};
|
|
|
|
networking.firewall.allowedUDPPorts = [ 655 ];
|
|
networking.firewall.allowedTCPPorts = [ 655 49152 ];
|
|
#services.tinc.networks.siem = {
|
|
# name = "display";
|
|
# extraConfig = ''
|
|
# ConnectTo = sjump
|
|
# Port = 1655
|
|
# '';
|
|
#};
|
|
|
|
# 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" ];
|
|
networking.interfaces.virbr1.ip4 = [{
|
|
address = "10.8.8.11";
|
|
prefixLength = 24;
|
|
}];
|
|
|
|
|
|
# nuc hardware
|
|
boot.loader.grub.device = rootdisk;
|
|
hardware.cpu.intel.updateMicrocode = true;
|
|
boot.initrd.availableKernelModules = [ "xhci_pci" "ehci_pci" "ahci" "usbhid" "usb_storage" "sd_mod" ];
|
|
boot.kernelModules = [ "kvm-intel" ];
|
|
fileSystems = {
|
|
"/" = {
|
|
device = rootdisk + "-part1";
|
|
fsType = "ext4";
|
|
};
|
|
"/data" = {
|
|
device = datadisk + "-part1";
|
|
fsType = "ext4";
|
|
};
|
|
};
|
|
|
|
# DualHead on NUC
|
|
# TODO: update synergy package with these extras (username)
|
|
# TODO: add crypto layer
|
|
systemd.services."synergy-client" = {
|
|
environment.DISPLAY = ":0";
|
|
serviceConfig.User = "makefu";
|
|
};
|
|
|
|
services.synergy = {
|
|
client = {
|
|
enable = true;
|
|
screenName = "wbob";
|
|
serverAddress = "x.r";
|
|
};
|
|
};
|
|
}
|