You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
infra/modules/users.nix

10 lines
240 B

{ config, lib, pkgs, auth_keys, sudo_keys, ... }:
{
users.users = {
root.openssh.authorizedKeys.keys = sudo_keys;
} // (lib.mapAttrs (name: keys: {
isNormalUser = true;
openssh.authorizedKeys.keys = keys;
}) auth_keys);
}