{ lib, ... }: let inherit (lib.options) mkOption; inherit (lib.types) str; in { options.modules.other.system = { username = mkOption { description = "username for this system"; type = str; }; }; }