about summary refs log tree commit diff
path: root/nixos/modules/services/system
diff options
context:
space:
mode:
authorEelco Dolstra <eelco.dolstra@logicblox.com>2015-08-24 14:36:21 +0200
committerEelco Dolstra <eelco.dolstra@logicblox.com>2015-08-25 11:07:31 +0200
commit87789ac39d6e93ec9f70e1a8deaabf4d5665b777 (patch)
tree2af17d7aced54a40eb5254744958e609dbe354c6 /nixos/modules/services/system
parent660cafe69a0bc7eba5f370b2cfa5b39535db6c28 (diff)
Hide services.dbus.enable
Realistically, you can't disable D-Bus on a modern system.
Diffstat (limited to 'nixos/modules/services/system')
-rw-r--r--nixos/modules/services/system/dbus.nix1
1 files changed, 1 insertions, 0 deletions
diff --git a/nixos/modules/services/system/dbus.nix b/nixos/modules/services/system/dbus.nix
index 5c20901427cb3..77427ce9606e4 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.