aboutsummaryrefslogtreecommitdiff
path: root/nixpkgs/nixos/modules/services/hardware/udisks2.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/nixos/modules/services/hardware/udisks2.nix')
-rw-r--r--nixpkgs/nixos/modules/services/hardware/udisks2.nix47
1 files changed, 47 insertions, 0 deletions
diff --git a/nixpkgs/nixos/modules/services/hardware/udisks2.nix b/nixpkgs/nixos/modules/services/hardware/udisks2.nix
new file mode 100644
index 00000000000..ed8703be921
--- /dev/null
+++ b/nixpkgs/nixos/modules/services/hardware/udisks2.nix
@@ -0,0 +1,47 @@
+# 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 ];
+ };
+
+}