{ config, pkgs, lib, flakeRoot, ... }:

{
home.packages = [ pkgs.bash ];
home.activation = {
recreateConfig = {
text = ''
${pkgs.bash}/bin/bash "${flakeRoot}/assets/scripts/recreate_config.sh"
'';
deps = [ pkgs.bash ];
};
};
}
This commit is contained in:
2026-03-02 19:47:19 +01:00
parent 9b0c98faf8
commit 95dafb6125
+2 -1
View File
@@ -2913,12 +2913,13 @@ This makes sure all ./assets/copy_stuff ends up in the right folder
home.activation = {
recreateConfig = {
text = ''
${pkgs.bash}/bin/bash "${config.flakeRoot.outPath}/assets/scripts/recreate_config.sh"
${pkgs.bash}/bin/bash "${flakeRoot}/assets/scripts/recreate_config.sh"
'';
deps = [ pkgs.bash ];
};
};
}
#+end_src
* README Utils