24 lines
420 B
Nix
24 lines
420 B
Nix
# For more comments check out [pilot](./pilot.nix)
|
|
{
|
|
pkgs,
|
|
outputs,
|
|
lib,
|
|
...
|
|
}:
|
|
{
|
|
users.mutableUsers = false;
|
|
users.users.guest = {
|
|
isNormalUser = true;
|
|
shell = pkgs.fish;
|
|
extraGroups = [
|
|
"wheel"
|
|
"audio"
|
|
"video"
|
|
"network"
|
|
"tty"
|
|
];
|
|
password = "heyo";
|
|
openssh.authorizedKeys.keyFiles = (import ./common.nix).authorizedKeys { inherit outputs lib; };
|
|
};
|
|
}
|