mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 15:11:25 +00:00
7b6510e455
Simplifies the module and gets rid of the following error: The --no-debug option is deprecated and ignored. See '--help
48 lines
761 B
Nix
48 lines
761 B
Nix
# Udisks daemon.
|
|
|
|
{ config, lib, pkgs, ... }:
|
|
|
|
with lib;
|
|
|
|
{
|
|
|
|
###### interface
|
|
|
|
options = {
|
|
|
|
services.udisks2 = {
|
|
|
|
enable = mkOption {
|
|
type = types.bool;
|
|
default = true;
|
|
description = ''
|
|
Whether to enable Udisks, a DBus service that allows
|
|
applications to query and manipulate storage devices.
|
|
'';
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
###### implementation
|
|
|
|
config = mkIf config.services.udisks2.enable {
|
|
|
|
environment.systemPackages = [ pkgs.udisks2 ];
|
|
|
|
services.dbus.packages = [ pkgs.udisks2 ];
|
|
|
|
system.activationScripts.udisks2 =
|
|
''
|
|
mkdir -m 0755 -p /var/lib/udisks2
|
|
'';
|
|
|
|
services.udev.packages = [ pkgs.udisks2 ];
|
|
|
|
systemd.packages = [ pkgs.udisks2 ];
|
|
};
|
|
|
|
}
|