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:
parent
612453a3bc
commit
214d4c4500
1 changed files with 1 additions and 0 deletions
|
|
@ -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"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue