···1# This module contains the basic configuration for building a graphical NixOS
2# installation CD.
3-4{ lib, pkgs, ... }:
5-6-with lib;
7-8{
9 imports = [ ./installation-cd-base.nix ];
10···2627 # Provide networkmanager for easy wireless configuration.
28 networking.networkmanager.enable = true;
29- networking.wireless.enable = mkImageMediaOverride false;
3031 # KDE complains if power management is disabled (to be precise, if
32 # there is no power management backend such as upower).
···1# This module contains the basic configuration for building a graphical NixOS
2# installation CD.
03{ lib, pkgs, ... }:
0004{
5 imports = [ ./installation-cd-base.nix ];
6···2223 # Provide networkmanager for easy wireless configuration.
24 networking.networkmanager.enable = true;
25+ networking.wireless.enable = lib.mkImageMediaOverride false;
2627 # KDE complains if power management is disabled (to be precise, if
28 # there is no power management backend such as upower).