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










                                                                        
{ config, pkgs, ...  }:

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