Add streamcontroller again
All checks were successful
Run nix flake check / flake-check (push) Successful in 4m11s
Periodic flake update / flake-update (push) Successful in 2m13s

This commit is contained in:
2025-08-04 23:56:43 +02:00
parent 7075440dda
commit 94d7f6afe9

View File

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