Wed Jun 5 08:44:34 PM CEST 2024

This commit is contained in:
Thomas Avé 2024-06-05 20:44:34 +02:00
parent da9d3eccec
commit e10dfc484e
1 changed files with 14 additions and 1 deletions

View File

@ -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";