omniflake/users/guest.nix
2026-01-22 16:44:45 +01:00

13 lines
247 B
Nix

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