summary refs log tree commit diff
path: root/nixos/modules/installer/cd-dvd
diff options
context:
space:
mode:
authorLuca Bruno <luca.bruno@immobiliare.it>2014-10-23 13:23:40 +0200
committerLuca Bruno <lucabru@src.gnome.org>2014-11-02 15:23:22 +0100
commit6bb278659f4670107e0445d7ed258e88fb1c4801 (patch)
tree4469fa7cadfa70a12457970e4a2770b28bf2d568 /nixos/modules/installer/cd-dvd
parenta6c21ccea93cb60d95f7e53cd244ac990445c576 (diff)
downloadnixlib-6bb278659f4670107e0445d7ed258e88fb1c4801.tar
nixlib-6bb278659f4670107e0445d7ed258e88fb1c4801.tar.gz
nixlib-6bb278659f4670107e0445d7ed258e88fb1c4801.tar.bz2
nixlib-6bb278659f4670107e0445d7ed258e88fb1c4801.tar.lz
nixlib-6bb278659f4670107e0445d7ed258e88fb1c4801.tar.xz
nixlib-6bb278659f4670107e0445d7ed258e88fb1c4801.tar.zst
nixlib-6bb278659f4670107e0445d7ed258e88fb1c4801.zip
kde installer: enable networkmanager. Closes #3433
Diffstat (limited to 'nixos/modules/installer/cd-dvd')
-rw-r--r--nixos/modules/installer/cd-dvd/installation-cd-graphical.nix4
1 files changed, 4 insertions, 0 deletions
diff --git a/nixos/modules/installer/cd-dvd/installation-cd-graphical.nix b/nixos/modules/installer/cd-dvd/installation-cd-graphical.nix
index b1e1d16c610d..189cca9e23b9 100644
--- a/nixos/modules/installer/cd-dvd/installation-cd-graphical.nix
+++ b/nixos/modules/installer/cd-dvd/installation-cd-graphical.nix
@@ -14,6 +14,10 @@ with lib;
   # Include gparted for partitioning disks
   environment.systemPackages = [ pkgs.gparted ];
   
+  # Provide networkmanager for easy wireless configuration.
+  networking.networkmanager.enable = true;
+  networking.wireless.enable = mkForce false;
+
   # KDE complains if power management is disabled (to be precise, if
   # there is no power management backend such as upower).
   powerManagement.enable = true;