blob: 276b1f60df499875fde2384ab8196a3a7d2b7bfa (
plain) (
tree)
|
|
# 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" = {};
};
}
|