From 2f1a818d00f957f3102c0b412864c63b6e3e7447 Mon Sep 17 00:00:00 2001 From: Orivej Desh Date: Sat, 25 Nov 2017 06:44:14 +0000 Subject: [PATCH] nixos/fwupd: disable by default It causes building during evaluation when enabled, and it is hardly useful without GNOME or the awareness of the system operator. --- nixos/modules/services/hardware/fwupd.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nixos/modules/services/hardware/fwupd.nix b/nixos/modules/services/hardware/fwupd.nix index c28f5c0bbb5..14113fe01bb 100644 --- a/nixos/modules/services/hardware/fwupd.nix +++ b/nixos/modules/services/hardware/fwupd.nix @@ -26,7 +26,7 @@ in { services.fwupd = { enable = mkOption { type = types.bool; - default = true; + default = false; description = '' Whether to enable fwupd, a DBus service that allows applications to update firmware.