Compare commits

..

2 Commits

Author SHA1 Message Date
henrov 8d8978d9e2 rebuilding minimised nix files 2026-03-02 19:47:27 +01:00
henrov 95dafb6125 { 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 ];
};
};
}
2026-03-02 19:47:19 +01:00
3 changed files with 301 additions and 299 deletions
+298 -297
View File
File diff suppressed because it is too large Load Diff
+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
+1 -1
View File
@@ -4,7 +4,7 @@
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 ];
};