tvl-depot/users/wpcarro/nixos/installer.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

13 lines
275 B
Nix
Raw Normal View History

# 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" = {};
};
}