From 119b250bcca3fcba3e25b041c712fc42e020f6ad Mon Sep 17 00:00:00 2001 From: Ivan Malison Date: Mon, 27 Apr 2026 14:42:14 -0700 Subject: [PATCH] fix(sni): avoid duplicate blueman applet unit --- nixos/sni.nix | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/nixos/sni.nix b/nixos/sni.nix index 9f7ef9ea..2a71e6fa 100644 --- a/nixos/sni.nix +++ b/nixos/sni.nix @@ -1,4 +1,4 @@ -{ config, inputs, pkgs, makeEnable, ... }: +{ config, inputs, lib, pkgs, makeEnable, ... }: let system = pkgs.stdenv.hostPlatform.system; kanshiSniPackage = @@ -10,6 +10,11 @@ let }); in makeEnable config "myModules.sni" true { + systemd.user.services.blueman-applet.serviceConfig.ExecStart = lib.mkForce [ + "" + "${pkgs.blueman}/bin/blueman-applet" + ]; + home-manager.sharedModules = [ ({ lib, ... }: { systemd.user.services.kanshi-sni = {