Skip to content

Instantly share code, notes, and snippets.

@disassembler
Created February 18, 2019 17:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save disassembler/8b08d45b16fa4e3c5a528ed722712761 to your computer and use it in GitHub Desktop.
Save disassembler/8b08d45b16fa4e3c5a528ed722712761 to your computer and use it in GitHub Desktop.
{ config, ... }:
{
imports = [<nixpkgs/nixos/modules/installer/cd-dvd/installation-cd-minimal.nix>];
boot.supportedFilesystems = [ "zfs" ];
boot.kernelParams = [ "console=ttyS0,115200n8" ];
boot.kernelModules = [ "kvm-intel" "wl" ];
boot.extraModulePackages = [ config.boot.kernelPackages.broadcom_sta ];
nixpkgs.config.allowUnfree = true;
services.openssh.enable = true;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment