diff --git a/flake.nix b/flake.nix index 8fc573a..45c21e4 100644 --- a/flake.nix +++ b/flake.nix @@ -86,11 +86,14 @@ script = '' def color [color: string, msg: string] { $"(ansi $color)($msg)(ansi reset)" } def info [msg: string] { print $"(color "blue" "INFO"): ($msg)" } - def success [msg: string] { print $"(color "green" "SUCCESS"): ($msg)" } - - info "Running script" - info "Something else is happening now" - info "Nearing completion" + def success [msg: string] { print $"(color "green" $msg)" } + + info $"Hello, NixCon (date now | date format "%Y")!" + info "So lovely to see everyone today" + info "Conference status:" + success "SUCCESS" + info "Nearing completion..." + info "Script status:" success "DONE" ''; };