From 94d7f6afe9ebd8aa38ea6b0a5fac9250014577c5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Torjus=20H=C3=A5kestad?= Date: Mon, 4 Aug 2025 23:56:43 +0200 Subject: [PATCH] Add streamcontroller again --- home/hyprland/hyprland_gunter.nix | 34 +++++++++++++++---------------- 1 file changed, 17 insertions(+), 17 deletions(-) diff --git a/home/hyprland/hyprland_gunter.nix b/home/hyprland/hyprland_gunter.nix index 2c1cbb8..64cd57e 100644 --- a/home/hyprland/hyprland_gunter.nix +++ b/home/hyprland/hyprland_gunter.nix @@ -152,25 +152,25 @@ in # streamcontroller service - # systemd.user.services = { - # streamcontroller = { - # Unit = { - # Description = "Streamcontroller service"; - # PartOf = [ "graphical-session.target" ]; - # After = [ "graphical-session.target" ]; - # Requisite = [ "graphical-session.target" ]; - # }; + 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"; - # }; + Service = { + ExecStart = "${pkgs.streamcontroller}/bin/streamcontroller -b"; + Restart = "on-failure"; + }; - # Install = { - # WantedBy = [ "graphical-session.target" ]; - # }; - # }; - # }; + Install = { + WantedBy = [ "graphical-session.target" ]; + }; + }; + }; wayland.windowManager.hyprland = { enable = true;