mirror of
https://github.com/nix-community/home-manager
synced 2024-11-04 18:29:45 +01:00
21c700d14b
`nix-doc-munge` can't handle these, which is understandable as I can barely handle them either. There are a few infelicities here: the current processor can't handle multiple terms to one description in a description list so they get comma-separated in one case, and one case that should ideally render as a `<figure>` with a `<figcaption>` in HTML is reduced to a paragraph with some `<strong>` text. (Which, in fairness, is how it rendered in practice with the DocBook anyway.) The docs generator has since been updated to handle figures, but we can't use it until moving off DocBook output.
130 lines
3.4 KiB
Nix
130 lines
3.4 KiB
Nix
{ 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 (lib.mdDoc "") // {
|
|
description = lib.mdDoc ''
|
|
Whether to enable the udiskie mount daemon.
|
|
|
|
Note, if you use NixOS then you must add
|
|
`services.udisks2.enable = true`
|
|
to your system configuration. Otherwise mounting will fail because
|
|
the Udisk2 DBus service is not found.
|
|
'';
|
|
};
|
|
|
|
settings = mkOption {
|
|
type = yaml.type;
|
|
default = { };
|
|
example = literalExpression ''
|
|
{
|
|
program_options = {
|
|
udisks_version = 2;
|
|
tray = true;
|
|
};
|
|
icon_names.media = [ "media-optical" ];
|
|
}
|
|
'';
|
|
description = ''
|
|
Configuration written to
|
|
<filename>$XDG_CONFIG_HOME/udiskie/config.yml</filename>.
|
|
</para><para>
|
|
See <link xlink:href="https://github.com/coldfix/udiskie/blob/master/doc/udiskie.8.txt#configuration" />
|
|
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 = lib.mdDoc ''
|
|
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 {
|
|
assertions = [
|
|
(hm.assertions.assertPlatform "services.udiskie" pkgs platforms.linux)
|
|
];
|
|
|
|
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 = lib.optional (cfg.tray != "never") "tray.target";
|
|
After = [ "graphical-session-pre.target" ]
|
|
++ lib.optional (cfg.tray != "never") "tray.target";
|
|
PartOf = [ "graphical-session.target" ];
|
|
};
|
|
|
|
Service.ExecStart = toString ([ "${pkgs.udiskie}/bin/udiskie" ]
|
|
++ optional config.xsession.preferStatusNotifierItems "--appindicator");
|
|
|
|
Install.WantedBy = [ "graphical-session.target" ];
|
|
};
|
|
};
|
|
}
|