summary refs log tree commit diff
path: root/nixos/modules/services/misc/devmon.nix
blob: 9dc8fee2964b19beed4f5a41922b440cba2db49d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
{ pkgs, config, lib, ... }:

with lib;

let
  cfg = config.services.devmon;

in {
  options = {
    services.devmon = {
      enable = mkOption {
        default = false;
        description = ''
          Whether to enable devmon, an automatic device mounting daemon.
        '';
      };
    };
  };

  config = mkIf cfg.enable {
    systemd.user.services.devmon = {
      description = "devmon automatic device mounting daemon";
      wantedBy = [ "default.target" ];
      path = [ pkgs.udevil pkgs.procps pkgs.udisks2 pkgs.which ];
      serviceConfig.ExecStart = "${pkgs.udevil}/bin/devmon";
    };

    services.udisks2.enable = true;
  };
}