This commit is contained in:
2026-03-04 22:04:19 +01:00
parent 5f7af6bbaa
commit ce32de2d1e
2 changed files with 315 additions and 292 deletions
+12 -1
View File
@@ -1 +1,12 @@
{ lib, ... }:
{
systemd.user.services.endScript = {
description = "Run end script after Home Manager";
after = [ "home-manager-activate.service" "graphical-session.target" ];
serviceConfig = {
Type = "oneshot";
RemainAfterExit = true;
ExecStart = "/path/to/your/script";
};
};
}