rebuilding minimised nix files

This commit is contained in:
2026-03-02 19:10:49 +01:00
parent 9932cc5286
commit 29035b336f
2 changed files with 324 additions and 323 deletions
+314 -323
View File
File diff suppressed because it is too large Load Diff
+10
View File
@@ -0,0 +1,10 @@
{ config, pkgs, lib, ... }:
{
# Ensure the script is executable and available
environment.systemPackages = [ pkgs.bash ];
# Add the activation script
system.activationScripts.recreateConfig = lib.mkAfter "setupNetworking" ''
${config.flakeRoot.outPath}/assets/scripts/recreate_config.sh
'';
}