mirror of
https://github.com/nix-community/home-manager
synced 2024-11-27 13:39:46 +01:00
udiskie: use xsession.preferStatusNotifierItems
This commit is contained in:
parent
a5a49c350d
commit
6694330bb2
1 changed files with 11 additions and 7 deletions
|
@ -13,7 +13,7 @@ let
|
||||||
(if cfg.notify then "n" else "N")
|
(if cfg.notify then "n" else "N")
|
||||||
({ always = "t"; auto = "s"; never = "T"; }.${cfg.tray})
|
({ always = "t"; auto = "s"; never = "T"; }.${cfg.tray})
|
||||||
]
|
]
|
||||||
++ optional cfg.sni "--appindicator"
|
++ optional config.xsession.preferStatusNotifierItems "--appindicator"
|
||||||
);
|
);
|
||||||
|
|
||||||
in
|
in
|
||||||
|
@ -21,6 +21,16 @@ in
|
||||||
{
|
{
|
||||||
meta.maintainers = [ maintainers.rycee ];
|
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 = {
|
options = {
|
||||||
services.udiskie = {
|
services.udiskie = {
|
||||||
enable = mkEnableOption "udiskie mount daemon";
|
enable = mkEnableOption "udiskie mount daemon";
|
||||||
|
@ -37,12 +47,6 @@ in
|
||||||
description = "Whether to show pop-up notifications.";
|
description = "Whether to show pop-up notifications.";
|
||||||
};
|
};
|
||||||
|
|
||||||
sni = mkOption {
|
|
||||||
type = types.bool;
|
|
||||||
default = false;
|
|
||||||
description = "Whether to enable sni (appindicator) support.";
|
|
||||||
};
|
|
||||||
|
|
||||||
tray = mkOption {
|
tray = mkOption {
|
||||||
type = types.enum [ "always" "auto" "never" ];
|
type = types.enum [ "always" "auto" "never" ];
|
||||||
default = "auto";
|
default = "auto";
|
||||||
|
|
Loading…
Reference in a new issue