omniflake/users/guest/system.nix
2026-03-05 09:59:10 +01:00

13 lines
260 B
Nix

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