nixos: set shell for appvm user

Surprisingly, gdb of all things uses the login shell from /etc/passwd to
launch the program under test, so I was seeing the
"This account is currently not available" message there.
This commit is contained in:
Val Packett 2025-12-18 04:29:53 -03:00
parent 612453a3bc
commit 214d4c4500

View file

@ -191,6 +191,7 @@ in
isSystemUser = true;
home = "/home/appvm";
description = "microVM User";
shell = pkgs.bash; # not nologin, despite being a "system" user
extraGroups = [
"wheel"
"video"