about summary refs log tree commit diff
path: root/users/wpcarro/nixos/installer.nix
blob: 0dff8ea07d132c8f325a28d895c8b3ec4597cd5c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
# This expression can be used to create NixOS .iso images.
{ ... }:

{
  imports = [
    <nixpkgs/nixos/modules/installer/cd-dvd/installation-cd-minimal.nix>
  ];
  config = {
    networking.wireless.enable = true;
    networking.wireless.networks."GoogleGuest" = {};
  };
}