infra/config/users.nix

19 lines
501 B
Nix
Raw Normal View History

2023-05-06 06:49:46 +02:00
{pkgs, ...}: {
i18n.defaultLocale = "en_US.UTF-8";
users.users.winston = {
isNormalUser = true;
extraGroups = ["wheel"];
openssh.authorizedKeys.keys = [
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAILm0O46zW/XfVOSwz0okRWYeOAg+wCVkCtCAoVTpZsOh"
];
shell = pkgs.bashInteractive;
};
users.users.root = {
openssh.authorizedKeys.keys = [
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAILm0O46zW/XfVOSwz0okRWYeOAg+wCVkCtCAoVTpZsOh"
];
shell = pkgs.bashInteractive;
};
}