rebuilding minimised nix files

This commit is contained in:
2026-03-03 07:12:23 +01:00
parent c156526038
commit a6bfd07819
3 changed files with 322 additions and 320 deletions
+300 -299
View File
File diff suppressed because it is too large Load Diff
+4 -3
View File
@@ -2910,18 +2910,19 @@ This makes sure all ./assets/copy_stuff ends up in the right folder
{ config, pkgs, lib, flakeRoot, ... }: { config, pkgs, lib, flakeRoot, ... }:
{ {
home.packages = [ pkgs.bash ]; home.packages = [ pkgs.bash ];
home.activation = { home.activation.recreateConfig = {
recreateConfig = {
text = '' text = ''
#!${pkgs.bash}/bin/bash #!${pkgs.bash}/bin/bash
set -euo pipefail
echo "Running post-activation script..."
"${flakeRoot}/assets/scripts/recreate_config.sh" "${flakeRoot}/assets/scripts/recreate_config.sh"
''; '';
deps = [ pkgs.bash ]; deps = [ pkgs.bash ];
}; };
};
} }
#+end_src #+end_src
* README Utils * README Utils
+3 -3
View File
@@ -1,13 +1,13 @@
{ config, pkgs, lib, flakeRoot, ... }: { config, pkgs, lib, flakeRoot, ... }:
{ {
home.packages = [ pkgs.bash ]; home.packages = [ pkgs.bash ];
home.activation = { home.activation.recreateConfig = {
recreateConfig = {
text = '' text = ''
#!${pkgs.bash}/bin/bash #!${pkgs.bash}/bin/bash
set -euo pipefail
echo "Running post-activation script..."
"${flakeRoot}/assets/scripts/recreate_config.sh" "${flakeRoot}/assets/scripts/recreate_config.sh"
''; '';
deps = [ pkgs.bash ]; deps = [ pkgs.bash ];
}; };
};
} }