working maybe?

This commit is contained in:
Charlie Root 2024-07-06 13:39:24 +02:00
commit 6abc7fe210
70 changed files with 406 additions and 1528 deletions

View file

@ -1,10 +1,5 @@
{
config,
lib,
pkgs,
...
}: let
inherit (config.modules.other.system) username;
{ config, lib, pkgs, ... }:
let inherit (config.modules.other.system) username;
in {
hardware.bluetooth = {
enable = true;
@ -16,8 +11,8 @@ in {
# Bluetooth headset media control buttons
systemd.user.services.mpris-proxy = {
description = "Mpris proxy";
after = ["network.target" "sound.target"];
wantedBy = ["default.target"];
after = [ "network.target" "sound.target" ];
wantedBy = [ "default.target" ];
serviceConfig.ExecStart = "${pkgs.bluez}/bin/mpris-proxy";
};
}