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
+8 -8
View File
@@ -1,13 +1,13 @@
{ 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 ];
};
home.activation.recreateConfig = {
text = ''
#!${pkgs.bash}/bin/bash
set -euo pipefail
echo "Running post-activation script..."
"${flakeRoot}/assets/scripts/recreate_config.sh"
'';
deps = [ pkgs.bash ];
};
}