mirror of
https://github.com/nix-community/home-manager.git
synced 2026-01-12 01:59:37 +08: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:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user