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

14 lines
390 B
Nix
Raw Normal View History

2023-05-28 05:24:36 +02:00
# For more comments check out [adrielus](./adrielus.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; };
};
}