2024-12-12 15:03 : id 379

This commit is contained in:
deadvey 2024-12-12 15:06:58 +00:00
parent 208d890a3d
commit 166af2831e

View File

@ -40,15 +40,15 @@ let
DUNST_ORIGIN = "top-center"; DUNST_ORIGIN = "top-center";
in in
{ {
home.activation.runScript = lib.hm.dag.entryAfter
[ "writeBoundary" ]
(lib.hm.dag.execScript "script" "$HOME/scripts/post-build.sh");
# Home Manager needs a bit of information about you and the paths it should # Home Manager needs a bit of information about you and the paths it should
# manage. # manage.
home = { home = {
activation = {
myActivationAction = lib.hm.dag.entryAfter ["writeBoundary"] ''
bash $HOME/scripts/wallpaper-updater
'';
};
username = "deadvey"; username = "deadvey";
homeDirectory = "/home/deadvey"; homeDirectory = "/home/deadvey";
enableNixpkgsReleaseCheck = false; enableNixpkgsReleaseCheck = false;
@ -120,7 +120,6 @@ in
}; };
"~/scripts/post-build.sh" = { "~/scripts/post-build.sh" = {
text = '' text = ''
bash $HOME/scripts/wallpaper-updater
''; '';
executable = true; executable = true;
}; };