mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 15:11:25 +00:00
6befeb6818
It seems that with the latest update to `udisks2`, the ExecStart path for the daemon changed from `/lib/udisks2` to `/libexec/udisks2`. This commit reflects that change for our purposes.
55 lines
979 B
Nix
55 lines
979 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.services.udisks2 = {
|
|
description = "Udisks2 service";
|
|
serviceConfig = {
|
|
Type = "dbus";
|
|
BusName = "org.freedesktop.UDisks2";
|
|
ExecStart = "${pkgs.udisks2}/libexec/udisks2/udisksd --no-debug";
|
|
};
|
|
};
|
|
};
|
|
|
|
}
|