nixos: Shuffle definitions and deprecate system.extraSystemBuilderCmds

Shuffle:
The definitions are now combined into a single option. Since they have
no interdependencies, that's ok, but you may notice this trivial change
by a changed hash, and analyzing with nix-diff.

Deprecation:
Use the option `system.systemBuilderCommands` instead.
This commit is contained in:
Robert Hensing
2025-11-12 17:12:58 +01:00
parent ff7090395a
commit 41b98b4a8a
2 changed files with 3 additions and 13 deletions

View File

@@ -64,7 +64,7 @@ in
boot.loader.grub.enable = false;
specialisation = rec {
brokenInitInterface.configuration.config.system.extraSystemBuilderCmds = ''
brokenInitInterface.configuration.config.system.systemBuilderCommands = ''
echo "systemd 0" > $out/init-interface-version
'';