diff --git a/nixos/modules/services/desktops/blueman.nix b/nixos/modules/services/desktops/blueman.nix index 8f62dc6b05ae..2b92d226dfa4 100644 --- a/nixos/modules/services/desktops/blueman.nix +++ b/nixos/modules/services/desktops/blueman.nix @@ -13,12 +13,6 @@ in options = { services.blueman = { enable = lib.mkEnableOption "blueman, a bluetooth manager"; - - withApplet = lib.mkOption { - type = lib.types.bool; - default = true; - description = "Whether to spawn the Blueman tray applet."; - }; }; }; @@ -30,15 +24,5 @@ in services.dbus.packages = [ pkgs.blueman ]; systemd.packages = [ pkgs.blueman ]; - - systemd.user.services.blueman-applet = lib.mkIf cfg.withApplet { - description = "Blueman tray applet"; - wantedBy = [ "graphical-session.target" ]; - partOf = [ "graphical-session.target" ]; - serviceConfig = { - ExecStart = "${pkgs.blueman}/bin/blueman-applet"; - Restart = "on-failure"; - }; - }; }; }