udiskie: add note about needing to enable system-wide config

Closes #3153

Signed-off-by: Sumner Evans <me@sumnerevans.com>
This commit is contained in:
Sumner Evans 2022-11-17 11:48:49 -07:00
parent bc90de24d8
commit c6be8a6ddc
No known key found for this signature in database
GPG Key ID: 8904527AB50022FD
1 changed files with 10 additions and 1 deletions

View File

@ -25,7 +25,16 @@ in {
options = {
services.udiskie = {
enable = mkEnableOption "udiskie mount daemon";
enable = mkEnableOption "udiskie mount daemon" // {
description = ''
Whether to enable the udiskie mount daemon.
</para><para>
Note, if you use NixOS then you must add
<code>services.udisks2.enable = true</code>
to your system configuration. Otherwise mounting will fail because
the Udisk2 DBus service is not found.
'';
};
settings = mkOption {
type = yaml.type;