{ config, pkgs, lib, ... }: with import ; let # all the good stuff resides in /data byid = dev: "/dev/disk/by-id/" + dev; rootDisk = byid "ata-INTEL_SSDSC2BW480H6_CVTR53120385480EGN"; bootPart = rootDisk + "-part1"; rootPart = rootDisk + "-part2"; allDisks = [ rootDisk ]; # auxDisk in { imports = [ # # # lan party ]; #networking.firewall.enable = false; makefu.server.primary-itf = "enp0s25"; # krebs.hidden-ssh.enable = true; boot.kernelModules = [ "coretemp" "f71882fg" ]; hardware.enableRedistributableFirmware = 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; boot.loader.grub.device = rootDisk; boot.initrd.luks.devices = [ { name = "luksroot"; device = rootPart; allowDiscards = true; keyFileSize = 4096; keyFile = "/dev/sdb"; } ]; krebs.build.host = config.krebs.hosts.darth; }