mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
0412bde942
Add missing type information to manually specified enable options or replace them by mkEnableOption where appropriate.
25 lines
556 B
Nix
25 lines
556 B
Nix
{ pkgs, config, lib, ... }:
|
|
|
|
with lib;
|
|
|
|
let
|
|
cfg = config.services.devmon;
|
|
|
|
in {
|
|
options = {
|
|
services.devmon = {
|
|
enable = mkEnableOption "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;
|
|
};
|
|
}
|