diff --git a/hosts/Aloria/default.nix b/hosts/Aloria/default.nix index d95735c..bc8b061 100644 --- a/hosts/Aloria/default.nix +++ b/hosts/Aloria/default.nix @@ -135,7 +135,20 @@ in fallbackDns = [ "1.1.1.1" "1.0.0.1" ]; }; - + hardware.bluetooth.enable = true; + hardware.bluetooth.powerOnBoot = true; + services.blueman.enable = true; + systemd.user.services.mpris-proxy = { + description = "Mpris proxy"; + after = [ "network.target" "sound.target" ]; + wantedBy = [ "default.target" ]; + serviceConfig.ExecStart = "${pkgs.bluez}/bin/mpris-proxy"; + }; + hardware.bluetooth.settings = { + General = { + Experimental = true; + }; + }; fileSystems."/home/server" = { device = "10.1:/home/server";