This commit is contained in:
2026-03-04 22:00:42 +01:00
parent 99b8b41e95
commit da3441e472
-20
View File
@@ -1457,26 +1457,6 @@ The configuration is done in the home manager section.
** Setting the config
#+begin_src nix :tangle configuration/end_script.nix :noweb tangle :mkdirp yes
{ lib, ... }:
let
scriptPath = "/path/to/your/script";
scriptExists = lib.fileExists scriptPath;
in
{
systemd.user.services.endScript = lib.mkIf scriptExists {
description = "Run end script after Home Manager";
after = [
"home-manager-activate.service"
"graphical-session.target"
];
serviceConfig = {
Type = "oneshot";
RemainAfterExit = true;
ExecStart = "${scriptPath}";
};
};
}
#+end_src