bluetooth overhaul

This commit is contained in:
2024-10-25 11:37:13 -04:00
parent b25b92296e
commit bfa8fb6184
2 changed files with 32 additions and 4 deletions

View File

@@ -23,8 +23,19 @@
config.programs.niri.package
];
# bluetooth manager
services.blueman-applet.enable = true;
# # bluetooth manager
# services.blueman-applet.enable = true;
# bluetooth media controls
systemd.user.services.mpris-proxy = {
Unit.Description = "Mpris proxy";
Install.After = [
"network.target"
"sound.target"
];
Install.WantedBy = [ "default.target" ];
Service.ExecStart = "${pkgs.bluez}/bin/mpris-proxy";
};
# notification daemon
services.dunst = {