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.
This commit is contained in:
parent
474c1ce799
commit
2f1a818d00
|
@ -26,7 +26,7 @@ in {
|
||||||
services.fwupd = {
|
services.fwupd = {
|
||||||
enable = mkOption {
|
enable = mkOption {
|
||||||
type = types.bool;
|
type = types.bool;
|
||||||
default = true;
|
default = false;
|
||||||
description = ''
|
description = ''
|
||||||
Whether to enable fwupd, a DBus service that allows
|
Whether to enable fwupd, a DBus service that allows
|
||||||
applications to update firmware.
|
applications to update firmware.
|
||||||
|
|
Loading…
Reference in New Issue