Fix service data race + thor vscode
This commit is contained in:
parent
4a01b0021a
commit
21ad4d1fc7
4 changed files with 9 additions and 0 deletions
|
|
@ -135,6 +135,7 @@
|
||||||
# ../../modules/hm/update_background.nix
|
# ../../modules/hm/update_background.nix
|
||||||
../../modules/hm/vim.nix
|
../../modules/hm/vim.nix
|
||||||
../../modules/hm/virtualization.nix
|
../../modules/hm/virtualization.nix
|
||||||
|
../../modules/hm/vscode.nix
|
||||||
../../modules/hm/webapp.nix
|
../../modules/hm/webapp.nix
|
||||||
../../modules/hm/xresources.nix
|
../../modules/hm/xresources.nix
|
||||||
../../modules/hm/zathura.nix
|
../../modules/hm/zathura.nix
|
||||||
|
|
|
||||||
|
|
@ -43,6 +43,11 @@ in
|
||||||
services.network-manager-applet.enable = true;
|
services.network-manager-applet.enable = true;
|
||||||
services.blueman-applet.enable = true;
|
services.blueman-applet.enable = true;
|
||||||
|
|
||||||
|
systemd.user.services.blueman-applet = {
|
||||||
|
Service = { Restart = "on-failure"; RestartSec = "3s"; };
|
||||||
|
};
|
||||||
|
|
||||||
|
|
||||||
wayland.windowManager.hyprland = {
|
wayland.windowManager.hyprland = {
|
||||||
enable = true;
|
enable = true;
|
||||||
settings = {
|
settings = {
|
||||||
|
|
|
||||||
|
|
@ -12,6 +12,8 @@
|
||||||
# ExecRestart = "${pkgs.swaynotificationcenter}/bin/swaync-client -R";
|
# ExecRestart = "${pkgs.swaynotificationcenter}/bin/swaync-client -R";
|
||||||
# KillMode = "mixed";
|
# KillMode = "mixed";
|
||||||
# Restart = "on-failure";
|
# Restart = "on-failure";
|
||||||
|
Restart = "on-failure";
|
||||||
|
RestartSec = "3s";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -20,6 +20,7 @@ in
|
||||||
systemd.user.services.waybar = {
|
systemd.user.services.waybar = {
|
||||||
Unit.PartOf = [ "tray.target" ];
|
Unit.PartOf = [ "tray.target" ];
|
||||||
Install.WantedBy = [ "tray.target" ];
|
Install.WantedBy = [ "tray.target" ];
|
||||||
|
Service = { Restart = "on-failure"; RestartSec = "3s"; };
|
||||||
};
|
};
|
||||||
home.packages = [ pkgs.swaynotificationcenter ];
|
home.packages = [ pkgs.swaynotificationcenter ];
|
||||||
programs.waybar = {
|
programs.waybar = {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue