wip: dnsc-machine setup

This commit is contained in:
Dennis Schoepf 2025-11-22 15:13:25 +01:00
parent 38a0a94072
commit 33d5b06ec1
2 changed files with 28 additions and 2 deletions

View file

@ -27,8 +27,8 @@
reversal-icon-theme
fnm
libnotify
bluez
bluetui
iwgtk
];
imports = [
@ -74,4 +74,14 @@
size = 24;
};
};
# Systemd Services
systemd.user.services = {
mpris-proxy = {
description = "Mpris proxy";
after = [ "network.target" "sound.target" ];
wantedBy = [ "default.target" ];
serviceConfig.ExecStart = "${pkgs.bluez}/bin/mpris-proxy";
};
};
}