From 9db70c83e3edf5bc65aaf09e4024b44efd3cae52 Mon Sep 17 00:00:00 2001 From: Ophestra Date: Sat, 20 Jun 2026 22:15:49 +0900 Subject: [PATCH] cmd/app: configure username and hostname These no longer need to be hardcoded since this is not subject to the limitations of home-manager. Signed-off-by: Ophestra --- cmd/app/app.go | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/cmd/app/app.go b/cmd/app/app.go index 6340ed90..d702215e 100644 --- a/cmd/app/app.go +++ b/cmd/app/app.go @@ -172,6 +172,14 @@ func parse(id string, base *check.Absolute, r io.Reader) (*hst.Config, error) { } switch key { + case "username": + c.Container.Username = value + continue + + case "hostname": + c.Container.Hostname = value + continue + case "group": c.Groups = append(c.Groups, value) continue