13 lines
256 B
Nix
13 lines
256 B
Nix
{ config, pkgs, ... }:
|
|
|
|
{
|
|
users.users.guest = {
|
|
isNormalUser = true;
|
|
description = "Guest";
|
|
extraGroups = [ "networkmanager" ];
|
|
shell = pkgs.fish;
|
|
openssh.authorizedKeys.keyFiles = [
|
|
../till/ssh/till${"@"}nova.pub
|
|
];
|
|
};
|
|
}
|