{ lib, ... }: let inherit (lib) mkOption; in { options.my.build = { image = mkOption { description = "Final output image for distribution."; type = lib.types.unspecified; }; }; config = { system = { stateVersion = "24.11"; }; }; }