{ 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:48:41 +01:00
parent 8d8978d9e2
commit b556e67b5d
+3 -1
View File
@@ -2913,13 +2913,15 @@ This makes sure all ./assets/copy_stuff ends up in the right folder
home.activation = {
recreateConfig = {
text = ''
${pkgs.bash}/bin/bash "${flakeRoot}/assets/scripts/recreate_config.sh"
#!${pkgs.bash}/bin/bash
"${flakeRoot}/assets/scripts/recreate_config.sh"
'';
deps = [ pkgs.bash ];
};
};
}
#+end_src
* README Utils