Created
February 18, 2019 17:05
-
-
Save disassembler/8b08d45b16fa4e3c5a528ed722712761 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ 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