Compare commits

..

2 commits

Author SHA1 Message Date
8c76b31111 disable reload after sleep
All checks were successful
Activate Homelab Configuration / rebuild (push) Successful in 36s
2026-03-29 10:47:54 +07:00
6c96c4ca0f disable forgejo restart on update 2026-03-29 09:46:51 +07:00
2 changed files with 5 additions and 2 deletions

View file

@ -6,7 +6,7 @@
lock_cmd = "hyprlock"; lock_cmd = "hyprlock";
unlock_cmd = "pkill -USR1 hyprlock"; unlock_cmd = "pkill -USR1 hyprlock";
before_sleep_cmd = "hyprctl dispatch dpms off && hyprlock"; before_sleep_cmd = "hyprctl dispatch dpms off && hyprlock";
after_sleep_cmd = "hyprctl dispatch dpms on && pkill -USR2 hyprlock"; after_sleep_cmd = "hyprctl dispatch dpms on";
}; };
listener = [ listener = [
{ {

View file

@ -48,5 +48,8 @@
hostPackages = with pkgs; [ bash coreutils git nix openssh nodejs ]; hostPackages = with pkgs; [ bash coreutils git nix openssh nodejs ];
}; };
}; };
systemd.services."gitea-runner-nixos-deploy".restartIfChanged = false; systemd.services = {
"gitea-runner-nixos-deploy".restartIfChanged = false;
"forgejo".restartIfChanged = false;
};
} }