hypr scripts

This commit is contained in:
Miguel Palhas
2024-10-06 17:07:58 +01:00
parent 907321cc59
commit cf47ffea96
5 changed files with 47 additions and 10 deletions
+10 -10
View File
@@ -1,14 +1,14 @@
{ pkgs, ... }:
{
services.blueman.enable = true;
# services.blueman-applet.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";
};
# systemd.user.services.mpris-proxy = {
# description = "Mpris proxy";
# after = [
# "network.target"
# "sound.target"
# ];
# wantedBy = [ "default.target" ];
# serviceConfig.ExecStart = "${pkgs.bluez}/bin/mpris-proxy";
# };
}