From 5dd3f3195b6e73bddfeb4d4c0dae6135a10ba845 Mon Sep 17 00:00:00 2001 From: Dennis Schoepf Date: Sat, 22 Nov 2025 15:15:58 +0100 Subject: [PATCH] wip: dnsc-machine setup --- home/linux.nix | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) diff --git a/home/linux.nix b/home/linux.nix index 47f52e2..f05ef23 100644 --- a/home/linux.nix +++ b/home/linux.nix @@ -76,12 +76,10 @@ }; # 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"; - }; + systemd.user.services.mpris-proxy = { + description = "Mpris proxy"; + after = [ "network.target" "sound.target" ]; + wantedBy = [ "default.target" ]; + serviceConfig.ExecStart = "${pkgs.bluez}/bin/mpris-proxy"; }; }