1
0
mirror of https://github.com/nix-community/home-manager synced 2024-06-26 00:18:30 +02:00

udiskie: add note about needing to enable system-wide config (#3424)

Closes #3153

Signed-off-by: Sumner Evans <me@sumnerevans.com>
This commit is contained in:
Sumner Evans 2022-11-17 15:27:03 -05:00 committed by GitHub
parent bc90de24d8
commit fe85cc4c37
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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;