1
Fork 0
satellite/hosts/nixos/common/users/guest.nix

14 lines
384 B
Nix
Raw Normal View History

2024-05-21 01:37:39 +02:00
# For more comments check out [pilot](./pilot.nix)
2023-05-28 05:24:36 +02:00
{ 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; };
};
}