Disable streamcontroller due to breakage
Some checks failed
Run nix flake check / flake-check (push) Failing after 45s

This commit is contained in:
2025-07-26 20:22:55 +02:00
parent 3cdb42e0c9
commit 65804aafde

View File

@@ -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;