{ lib, config, userName, ... }: with lib; let cfg = config.module.services.getty; in { options = { module.services.getty = { enable = mkEnableOption ""; }; }; config = mkIf cfg.enable { services.getty = { autologinUser = userName; greetingLine = "Good day my lord ahhhh ${userName}"; }; }; }