Compare commits

...

2 Commits

Author SHA1 Message Date
henrov 12897de54f . 2026-03-04 22:01:32 +01:00
henrov 41eddeaec7 . 2026-03-04 22:01:27 +01:00
3 changed files with 350 additions and 291 deletions
+311 -291
View File
File diff suppressed because it is too large Load Diff
+20
View File
@@ -1457,6 +1457,26 @@ The configuration is done in the home manager section.
** Setting the config ** Setting the config
#+begin_src nix :tangle configuration/end_script.nix :noweb tangle :mkdirp yes #+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 #+end_src
+19
View File
@@ -1 +1,20 @@
{ 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}";
};
};
}