From 87789ac39d6e93ec9f70e1a8deaabf4d5665b777 Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Mon, 24 Aug 2015 14:36:21 +0200 Subject: [PATCH] Hide services.dbus.enable Realistically, you can't disable D-Bus on a modern system. --- nixos/modules/services/system/dbus.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/nixos/modules/services/system/dbus.nix b/nixos/modules/services/system/dbus.nix index 5c20901427cb..77427ce9606e 100644 --- a/nixos/modules/services/system/dbus.nix +++ b/nixos/modules/services/system/dbus.nix @@ -73,6 +73,7 @@ in enable = mkOption { type = types.bool; default = true; + internal = true; description = '' Whether to start the D-Bus message bus daemon, which is required by many other system services and applications.