about summary refs log blame commit diff
path: root/nixos/installer.nix
blob: 276b1f60df499875fde2384ab8196a3a7d2b7bfa (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
                                                          










                                                                        
# This expression can be used to create NixOS .iso images.
{ config, pkgs, ...  }:

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