puter/hosts/desktop/glacier/users.nix

10 lines
255 B
Nix
Raw Normal View History

2024-12-30 21:52:20 +00:00
{config, ...}: {
users.users.guest = {
description = "Guest";
uid = 1001;
isNormalUser = true;
hashedPasswordFile = config.age.secrets."user-guest".path;
openssh.authorizedKeys.keys = builtins.attrValues config.pubkeys.users;
};
}