14 lines
390 B
Nix
14 lines
390 B
Nix
# 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; };
|
|
};
|
|
}
|