Fix service data race + thor vscode

This commit is contained in:
Filippo Berto 2024-10-28 19:23:17 +01:00
parent 4a01b0021a
commit 21ad4d1fc7
Signed by: bertof
GPG key ID: 9DBF7E6A1D2CE9ED
4 changed files with 9 additions and 0 deletions

View file

@ -43,6 +43,11 @@ in
services.network-manager-applet.enable = true;
services.blueman-applet.enable = true;
systemd.user.services.blueman-applet = {
Service = { Restart = "on-failure"; RestartSec = "3s"; };
};
wayland.windowManager.hyprland = {
enable = true;
settings = {

View file

@ -12,6 +12,8 @@
# ExecRestart = "${pkgs.swaynotificationcenter}/bin/swaync-client -R";
# KillMode = "mixed";
# Restart = "on-failure";
Restart = "on-failure";
RestartSec = "3s";
};
};

View file

@ -20,6 +20,7 @@ in
systemd.user.services.waybar = {
Unit.PartOf = [ "tray.target" ];
Install.WantedBy = [ "tray.target" ];
Service = { Restart = "on-failure"; RestartSec = "3s"; };
};
home.packages = [ pkgs.swaynotificationcenter ];
programs.waybar = {