omniflake/users/guest/system.nix
2026-01-29 17:22:27 +01:00

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
];
};
}