From 29ad012763f4e07c5c50635915c1d4ae751123cc Mon Sep 17 00:00:00 2001 From: Anton Plotnikov Date: Fri, 20 Jul 2018 00:55:23 +0300 Subject: [PATCH] udiskie: add sni support --- modules/services/udiskie.nix | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/modules/services/udiskie.nix b/modules/services/udiskie.nix index 5155b37c..2976a631 100644 --- a/modules/services/udiskie.nix +++ b/modules/services/udiskie.nix @@ -13,6 +13,7 @@ let (if cfg.notify then "n" else "N") ({ always = "t"; auto = "s"; never = "T"; }.${cfg.tray}) ] + ++ optional cfg.sni "--appindicator" ); in @@ -36,6 +37,12 @@ in description = "Whether to show pop-up notifications."; }; + sni = mkOption { + type = types.bool; + default = false; + description = "Whether to enable sni (appindicator) support."; + }; + tray = mkOption { type = types.enum [ "always" "auto" "never" ]; default = "auto";