From 0c5c44f94e69dee747395fb8ae3b5e4b4ead1f10 Mon Sep 17 00:00:00 2001 From: aszlig Date: Tue, 16 Jun 2015 18:04:09 +0200 Subject: Fix conflicting definitions for wireless.enable. Since NixOS/nixpkgs@e212e07, boolean options don't default to true anymore if they're defined multiple times. So we need to explicitly override the value for networking.wireless.enable, because we have set it to false in the base profile. Signed-off-by: aszlig --- machines/aszlig/tishtushi.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'machines/aszlig/tishtushi.nix') diff --git a/machines/aszlig/tishtushi.nix b/machines/aszlig/tishtushi.nix index 2d6833f3..3ae2909d 100644 --- a/machines/aszlig/tishtushi.nix +++ b/machines/aszlig/tishtushi.nix @@ -35,7 +35,7 @@ in { }; networking.hostName = "tishtushi"; - networking.wireless.enable = true; + networking.wireless.enable = mkForce true; fileSystems."/" = { device = "/dev/disk/by-uuid/${rootUUID}"; -- cgit 1.4.1