From 9904f1f387f037fe37f193742d06cf837e8b355f Mon Sep 17 00:00:00 2001 From: "info@data-pro.nu" Date: Wed, 4 Mar 2026 22:03:46 +0100 Subject: [PATCH] . --- henrovnix_ok/README.org | 20 -------------------- 1 file changed, 20 deletions(-) diff --git a/henrovnix_ok/README.org b/henrovnix_ok/README.org index 29f5c99c1..84f81ed4f 100755 --- a/henrovnix_ok/README.org +++ b/henrovnix_ok/README.org @@ -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, builtins, ... }: - -let - scriptPath = "/path/to/your/script"; - scriptExists = builtins.pathExists 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