{ config, lib, pkgs, ... }: with lib; let mergeSets = sets: lists.fold attrsets.recursiveUpdate { } sets; yaml = pkgs.formats.yaml { }; cfg = config.services.udiskie; in { meta.maintainers = [ maintainers.rycee ]; imports = [ (mkRemovedOptionModule [ "services" "udiskie" "sni" ] '' Support for Status Notifier Items is now configured globally through the xsession.preferStatusNotifierItems option. Please change to use that instead. '') ]; options = { services.udiskie = { enable = mkEnableOption "udiskie mount daemon"; settings = mkOption { type = yaml.type; default = { }; example = literalExpression '' { program_options = { udisks_version = 2; tray = true; }; icon_names.media = [ "media-optical" ]; } ''; description = '' Configuration written to $XDG_CONFIG_HOME/udiskie/config.toml. See for the full list of options. ''; }; automount = mkOption { type = types.bool; default = true; description = "Whether to automatically mount new devices."; }; notify = mkOption { type = types.bool; default = true; description = "Whether to show pop-up notifications."; }; tray = mkOption { type = types.enum [ "always" "auto" "never" ]; default = "auto"; description = '' Whether to display tray icon. The options are always Always show tray icon. auto Show tray icon only when there is a device available. never Never show tray icon. ''; }; }; }; config = mkIf config.services.udiskie.enable { xdg.configFile."udiskie/config.yml".source = yaml.generate "udiskie-config.yml" (mergeSets [ { program_options = { automount = cfg.automount; tray = if cfg.tray == "always" then true else if cfg.tray == "never" then false else "auto"; notify = cfg.notify; }; } cfg.settings ]); systemd.user.services.udiskie = { Unit = { Description = "udiskie mount daemon"; Requires = [ "tray.target" ]; After = [ "graphical-session-pre.target" "tray.target" ]; PartOf = [ "graphical-session.target" ]; }; Service.ExecStart = toString ([ "${pkgs.udiskie}/bin/udiskie" ] ++ optional config.xsession.preferStatusNotifierItems "--appindicator"); Install.WantedBy = [ "graphical-session.target" ]; }; }; }