From 65804aafde74fb718acf6da1e8eca91514adf8b6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Torjus=20H=C3=A5kestad?= Date: Sat, 26 Jul 2025 20:22:55 +0200 Subject: [PATCH] Disable streamcontroller due to breakage --- home/hyprland/hyprland_gunter.nix | 35 ++++++++++++++++--------------- 1 file changed, 18 insertions(+), 17 deletions(-) diff --git a/home/hyprland/hyprland_gunter.nix b/home/hyprland/hyprland_gunter.nix index 1e7b86c..2c1cbb8 100644 --- a/home/hyprland/hyprland_gunter.nix +++ b/home/hyprland/hyprland_gunter.nix @@ -151,25 +151,26 @@ in }; # streamcontroller service - systemd.user.services = { - streamcontroller = { - Unit = { - Description = "Streamcontroller service"; - PartOf = [ "graphical-session.target" ]; - After = [ "graphical-session.target" ]; - Requisite = [ "graphical-session.target" ]; - }; - Service = { - ExecStart = "${pkgs.streamcontroller}/bin/streamcontroller -b"; - Restart = "on-failure"; - }; + # systemd.user.services = { + # streamcontroller = { + # Unit = { + # Description = "Streamcontroller service"; + # PartOf = [ "graphical-session.target" ]; + # After = [ "graphical-session.target" ]; + # Requisite = [ "graphical-session.target" ]; + # }; - Install = { - WantedBy = [ "graphical-session.target" ]; - }; - }; - }; + # Service = { + # ExecStart = "${pkgs.streamcontroller}/bin/streamcontroller -b"; + # Restart = "on-failure"; + # }; + + # Install = { + # WantedBy = [ "graphical-session.target" ]; + # }; + # }; + # }; wayland.windowManager.hyprland = { enable = true;