puter/hosts/desktop/glacier/users.nix
2024-12-30 22:52:20 +01:00

10 lines
255 B
Nix

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